diff --git a/.azure-pipelines/generate-auth-module-template.yml b/.azure-pipelines/generate-auth-module-template.yml
index 0b92300335c..0600456da0a 100644
--- a/.azure-pipelines/generate-auth-module-template.yml
+++ b/.azure-pipelines/generate-auth-module-template.yml
@@ -10,10 +10,6 @@ parameters:
displayName: 'Authentication Module Name'
type: string
default: 'Authentication'
- - name: AUTH_MODULE_DLL_PATTERN
- displayName: 'Authentication Module DLL Pattern'
- type: string
- default: 'Microsoft.Graph.Authentication.dll'
- name: Api_Key
displayName: 'Api Key'
type: string
@@ -78,7 +74,8 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
FolderPath: $(AUTH_MODULE_PATH)
- Pattern: $(AUTH_MODULE_DLL_PATTERN)
+ # Recursively finds files matching these patterns:
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll'
signConfigType: inlineSignParams
inlineOperation: |
[
@@ -105,7 +102,8 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
FolderPath: $(AUTH_MODULE_PATH)
- Pattern: $(AUTH_MODULE_DLL_PATTERN)
+ # Recursively finds files matching these patterns:
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll, InitializeAssemblyResolver.ps1'
signConfigType: inlineSignParams
inlineOperation: |
[
diff --git a/.azure-pipelines/generate-auth-module.yml b/.azure-pipelines/generate-auth-module.yml
deleted file mode 100644
index 3d74a18f287..00000000000
--- a/.azure-pipelines/generate-auth-module.yml
+++ /dev/null
@@ -1,164 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-# Generates a release build artifact (nuget) from HEAD of master for auth module.
-name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-trigger:
- branches:
- include:
- - master
- paths:
- include:
- - src/Authentication/*
-pr: none
-variables:
- MODULE_NAME: 'Authentication'
- MODULE_PATH: 'src\Authentication\Authentication\'
- MODULE_DLL_PATTERN: 'Microsoft.Graph.Authentication.dll'
-
-jobs:
-- job: MSGraphPSSDKGeneration
- displayName: MS Graph PS SDK Auth Generation
- timeoutInMinutes: 300
- pool:
- vmImage: 'windows-latest'
-
- steps:
- - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
- displayName: 'Run CredScan'
- inputs:
- debugMode: false
-
- - task: NuGetToolInstaller@1
- displayName: 'Install Nuget'
-
- - task: PowerShell@2
- displayName: 'Generate and Build Auth Module'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateAuthenticationModule.ps1'
- arguments: '-ArtifactsLocation $(Build.ArtifactStagingDirectory) -Build -EnableSigning'
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL Strong Name (Graph Auth Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
- FolderPath: $(MODULE_PATH)
- Pattern: $(MODULE_DLL_PATTERN)
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameSign",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL CodeSigning (Graph Auth Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
- FolderPath: $(MODULE_PATH)
- Pattern: $(MODULE_DLL_PATTERN)
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolSign",
- "parameters": [
- {
- "parameterName": "OpusName",
- "parameterValue": "Microsoft"
- },
- {
- "parameterName": "OpusInfo",
- "parameterValue": "http://www.microsoft.com"
- },
- {
- "parameterName": "FileDigest",
- "parameterValue": "/fd \"SHA256\""
- },
- {
- "parameterName": "PageHash",
- "parameterValue": "/NPH"
- },
- {
- "parameterName": "TimeStamp",
- "parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
- }
- ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: PowerShell@2
- displayName: 'Pack Auth Module'
- inputs:
- targetType: 'inline'
- script: |
- & $(System.DefaultWorkingDirectory)/tools/PackModule.ps1 -Module $(MODULE_NAME) -ArtifactsLocation $(Build.ArtifactStagingDirectory)
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP NuGet CodeSigning'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
- FolderPath: '$(Build.ArtifactStagingDirectory)\$(MODULE_NAME)'
- Pattern: 'Microsoft.Graph.$(MODULE_NAME)*.nupkg'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetSign",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetVerify",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: PublishBuildArtifacts@1
- displayName: Publish Artifact Microsoft.Graph.Authentication.nupkg'
- inputs:
- PathtoPublish: '$(Build.ArtifactStagingDirectory)/$(MODULE_NAME)'
- ArtifactName: 'drop'
- publishLocation: 'Container'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
diff --git a/.azure-pipelines/generate-beta-modules.yml b/.azure-pipelines/generate-beta-modules.yml
deleted file mode 100644
index f41459c1093..00000000000
--- a/.azure-pipelines/generate-beta-modules.yml
+++ /dev/null
@@ -1,267 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-# Generates a release build artifact (nuget) from HEAD of master for beta Graph workload modules.
-name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-trigger:
- branches:
- include:
- - master
- paths:
- include:
- - src/*
- - config/ModulesMapping.jsonc
- exclude:
- - src/Authentication/*
-pr: none
-variables:
- MODULE_PREFIX: 'Microsoft.Graph'
- WORKLOAD_MODULE_PATH: 'src\'
- AUTH_MODULE_PATH: 'src\Authentication\Authentication\bin\'
- AUTH_MODULE_DLL_PATTERN: 'Microsoft.Graph.Authentication.dll'
-
-jobs:
-- job: MSGraphPSSDKGeneration
- displayName: MS Graph PS SDK Beta Generation
- timeoutInMinutes: 800
- pool:
- name: Microsoft Graph
- demands: 'Agent.Name -equals PS-Build-Agent'
-
- steps:
- - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
- displayName: 'Run CredScan'
- inputs:
- debugMode: false
-
- # Install Node
- - task: NodeTool@0
- displayName: Node install
- inputs:
- versionSpec: '13.14.0'
-
- - task: Npm@1
- displayName: 'Install AutoRest'
- inputs:
- command: 'custom'
- customCommand: 'install -g autorest'
-
- - task: NuGetToolInstaller@1
- displayName: 'Install Nuget'
-
- - task: PowerShell@2
- displayName: 'Build Auth Modules'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateAuthenticationModule.ps1'
- arguments: '-ArtifactsLocation $(Build.ArtifactStagingDirectory) -Build -BuildWhenEqual -EnableSigning'
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL Strong Name (Graph Auth Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: $(AUTH_MODULE_PATH)
- Pattern: '$(AUTH_MODULE_DLL_PATTERN)'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameSign",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL CodeSigning (Graph Auth Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: $(AUTH_MODULE_PATH)
- Pattern: $(AUTH_MODULE_DLL_PATTERN)
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolSign",
- "parameters": [
- {
- "parameterName": "OpusName",
- "parameterValue": "Microsoft"
- },
- {
- "parameterName": "OpusInfo",
- "parameterValue": "http://www.microsoft.com"
- },
- {
- "parameterName": "FileDigest",
- "parameterValue": "/fd \"SHA256\""
- },
- {
- "parameterName": "PageHash",
- "parameterValue": "/NPH"
- },
- {
- "parameterName": "TimeStamp",
- "parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
- }
- ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: PowerShell@2
- displayName: 'Generate and Build Graph Resource Modules'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateModules.ps1'
- arguments: '-ArtifactsLocation $(Build.ArtifactStagingDirectory)\ -Build -Test -EnableSigning'
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL Strong Name (Graph Resource Modules)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: $(WORKLOAD_MODULE_PATH)
- Pattern: '$(MODULE_PREFIX).*.private.dll'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameSign",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-233863-SN",
- "operationSetCode": "StrongNameVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP DLL CodeSigning (Graph Resource Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: $(WORKLOAD_MODULE_PATH)
- Pattern: '$(MODULE_PREFIX).*.private.dll, $(MODULE_PREFIX).*.psm1, $(MODULE_PREFIX).*.format.ps1xml, ProxyCmdletDefinitions.ps1, load-dependency.ps1'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolSign",
- "parameters": [
- {
- "parameterName": "OpusName",
- "parameterValue": "Microsoft"
- },
- {
- "parameterName": "OpusInfo",
- "parameterValue": "http://www.microsoft.com"
- },
- {
- "parameterName": "FileDigest",
- "parameterValue": "/fd \"SHA256\""
- },
- {
- "parameterName": "PageHash",
- "parameterValue": "/NPH"
- },
- {
- "parameterName": "TimeStamp",
- "parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
- }
- ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 160
-
- - task: PowerShell@2
- displayName: 'Pack Modules'
- inputs:
- targetType: 'inline'
- script: |
- $ModuleMappingConfigPath = "$(System.DefaultWorkingDirectory)/config/ModulesMapping.jsonc"
- [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable
- $ModuleMapping.Keys | ForEach-Object {
- $ModuleName = $_
- $ModuleProjectDir = "$(System.DefaultWorkingDirectory)/src/$ModuleName/$ModuleName"
- & $(System.DefaultWorkingDirectory)/tools/PackModule.ps1 -Module $ModuleName -ArtifactsLocation $(Build.ArtifactStagingDirectory)\
- }
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP NuGet CodeSigning'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: '$(Build.ArtifactStagingDirectory)\'
- Pattern: '*.nupkg'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetSign",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetVerify",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: PublishBuildArtifacts@1
- displayName: Publish Artifact Beta Modules
- inputs:
- PathtoPublish: '$(Build.ArtifactStagingDirectory)/'
- ArtifactName: 'drop'
- publishLocation: 'Container'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
\ No newline at end of file
diff --git a/.azure-pipelines/generate-beta-rollup-module.yml b/.azure-pipelines/generate-beta-rollup-module.yml
deleted file mode 100644
index a2179ae12a8..00000000000
--- a/.azure-pipelines/generate-beta-rollup-module.yml
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-# Generates a release build artifact (nuget) for beta roll-up module.
-name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-trigger: none
-pr: none
-variables:
- MODULE_PREFIX: 'Microsoft.Graph'
- MODULE_NAME: 'Graph'
- MODULE_PATH: 'src/Graph/Graph'
-
-jobs:
-- job: MSGraphPSSDKGeneration
- displayName: MS Graph PS SDK Roll-Up Generation
- timeoutInMinutes: 300
- pool:
- vmImage: 'windows-latest'
-
- steps:
- - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
- displayName: 'Run CredScan'
- inputs:
- debugMode: false
-
- - task: NuGetToolInstaller@1
- displayName: 'Install Nuget'
-
- - task: PowerShell@2
- displayName: 'Generate and Build Roll-Up Module'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateRollUpModule.ps1'
- pwsh: true
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP CodeSigning (Graph Roll-Up Module)'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: $(MODULE_PATH)
- Pattern: '$(MODULE_PREFIX).psm1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolSign",
- "parameters": [
- {
- "parameterName": "OpusName",
- "parameterValue": "Microsoft"
- },
- {
- "parameterName": "OpusInfo",
- "parameterValue": "http://www.microsoft.com"
- },
- {
- "parameterName": "FileDigest",
- "parameterValue": "/fd \"SHA256\""
- },
- {
- "parameterName": "PageHash",
- "parameterValue": "/NPH"
- },
- {
- "parameterName": "TimeStamp",
- "parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
- }
- ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-230012",
- "operationSetCode": "SigntoolVerify",
- "parameters": [],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: NuGetCommand@2
- displayName: 'Pack Roll-Up Module'
- inputs:
- command: 'pack'
- Configuration: Release
- packagesToPack: '$(System.DefaultWorkingDirectory)/$(MODULE_PATH)/$(MODULE_PREFIX).nuspec'
- packDestination: '$(Build.ArtifactStagingDirectory)/'
- versioningScheme: 'off'
-
- - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
- displayName: 'ESRP NuGet CodeSigning'
- inputs:
- ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
- FolderPath: '$(Build.ArtifactStagingDirectory)/'
- Pattern: 'Microsoft.Graph*.nupkg'
- signConfigType: inlineSignParams
- inlineOperation: |
- [
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetSign",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- },
- {
- "keyCode": "CP-401405",
- "operationSetCode": "NuGetVerify",
- "parameters": [ ],
- "toolName": "sign",
- "toolVersion": "1.0"
- }
- ]
- SessionTimeout: 20
-
- - task: PublishBuildArtifacts@1
- displayName: Publish Artifact Microsoft.Graph.nupkg'
- inputs:
- PathtoPublish: '$(Build.ArtifactStagingDirectory)/'
- ArtifactName: 'drop'
- publishLocation: 'Container'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
\ No newline at end of file
diff --git a/.azure-pipelines/generate-modules-template.yml b/.azure-pipelines/generate-modules-template.yml
index de39096de2c..40a844f8a05 100644
--- a/.azure-pipelines/generate-modules-template.yml
+++ b/.azure-pipelines/generate-modules-template.yml
@@ -6,10 +6,6 @@ parameters:
displayName: 'Module Path'
type: string
default: 'src\Authentication\Authentication\bin\'
- - name: AUTH_MODULE_DLL_PATTERN
- displayName: 'Module Pattern'
- type: string
- default: 'Microsoft.Graph.Authentication.dll'
- name: Api_Key
displayName: 'Api Key'
type: string
@@ -66,7 +62,7 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
FolderPath: $(AUTH_MODULE_PATH)
- Pattern: '$(AUTH_MODULE_DLL_PATTERN)'
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll'
signConfigType: inlineSignParams
inlineOperation: |
[
@@ -93,7 +89,7 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet (AKV)'
FolderPath: $(AUTH_MODULE_PATH)
- Pattern: $(AUTH_MODULE_DLL_PATTERN)
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll'
signConfigType: inlineSignParams
inlineOperation: |
[
diff --git a/.azure-pipelines/generation-templates/generate-service-modules.yml b/.azure-pipelines/generation-templates/generate-service-modules.yml
index 599dd804e30..dd2c922ff8a 100644
--- a/.azure-pipelines/generation-templates/generate-service-modules.yml
+++ b/.azure-pipelines/generation-templates/generate-service-modules.yml
@@ -6,8 +6,6 @@ parameters:
type: string
- name: AuthModulePath
type: string
- - name: AuthModuleDllPattern
- type: string
- name: ServiceModulePath
type: string
- name: ModulePrefix
@@ -30,7 +28,6 @@ jobs:
Branch: ${{ parameters.Branch }}
ModulesToGenerate: ${{ parameters.ModulesToGenerate }}
AuthModulePath: ${{ parameters.AuthModulePath }}
- AuthModuleDllPattern: ${{ parameters.AuthModuleDllPattern }}
ServiceModulePath: ${{ parameters.ServiceModulePath }}
ModulePrefix: ${{ parameters.ModulePrefix }}
EnableSigning: ${{ parameters.EnableSigning }}
@@ -64,7 +61,7 @@ jobs:
inputs:
ConnectedServiceName: "microsoftgraph ESRP CodeSign DLL and NuGet (AKV)"
FolderPath: $(AuthModulePath)
- Pattern: $(AuthModuleDllPattern)
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll'
signConfigType: inlineSignParams
inlineOperation: |
[
@@ -91,7 +88,7 @@ jobs:
inputs:
ConnectedServiceName: "microsoftgraph ESRP CodeSign DLL and NuGet (AKV)"
FolderPath: $(AuthModulePath)
- Pattern: $(AuthModuleDllPattern)
+ Pattern: 'Microsoft.Graph.Authentication.dll, Microsoft.Graph.Authentication.Core.dll'
signConfigType: inlineSignParams
inlineOperation: |
[
diff --git a/.azure-pipelines/integrated-pipeline.yml b/.azure-pipelines/integrated-pipeline.yml
index 93fcf8488af..dc2af0bc751 100644
--- a/.azure-pipelines/integrated-pipeline.yml
+++ b/.azure-pipelines/integrated-pipeline.yml
@@ -17,8 +17,6 @@ parameters:
variables:
AUTH_MODULE_NAME: 'Authentication'
AUTH_MODULE_PATH: 'src\Authentication\Authentication'
- AUTH_MODULE_DLL_PATTERN: 'Microsoft.Graph.Authentication.dll'
- MODULE_DLL_PATTERN: 'Microsoft.Graph.Authentication.dll'
MODULE_PREFIX: 'Microsoft.Graph'
ROLLUP_MODULE_NAME: 'Graph'
ROLLUP_MODULE_PATH: 'src/Graph/Graph'
@@ -101,7 +99,6 @@ stages:
Api_Key: $(Api_Key)
AUTH_MODULE_NAME: $(AUTH_MODULE)
AUTH_MODULE_PATH: $(AUTH_MODULE_PATH)
- AUTH_MODULE_DLL_PATTERN: $(AUTH_MODULE_DLL_PATTERN)
EnableSigning: true
BUILDNUMBER: $(BUILDNUMBER)
@@ -115,7 +112,6 @@ stages:
WORKLOAD_MODULE_PATH: $(WORKLOAD_MODULE_PATH)
GRAPH_VERSION: $(GRAPH_VERSION)
AUTH_MODULE_PATH: $(AUTH_MODULE_PATH)
- AUTH_MODULE_DLL_PATTERN: $(AUTH_MODULE_DLL_PATTERN)
EnableSigning: true
BUILDNUMBER: $(BUILDNUMBER)
diff --git a/.azure-pipelines/validate-pr-auth-module.yml b/.azure-pipelines/validate-pr-auth-module.yml
deleted file mode 100644
index 1dd1b386db7..00000000000
--- a/.azure-pipelines/validate-pr-auth-module.yml
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-# Validate pull requests to master and dev branches for auth module.
-name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-pr:
- branches:
- include:
- - dev
- - master
- - milestone/*
- paths:
- include:
- - src/Authentication/*
-trigger: none
-
-jobs:
-- job: MSGraphPSSDKValidation_Windows
- displayName: MS Graph PS SDK Auth Validation - Windows
- timeoutInMinutes: 300
- pool:
- vmImage: 'windows-latest'
-
- steps:
- - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
- displayName: 'Run CredScan'
- inputs:
- debugMode: false
-
- - task: PowerShell@2
- displayName: 'Generate and Build Auth Module'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateAuthenticationModule.ps1'
- arguments: '-RepositoryApiKey $(Api_Key) -ArtifactsLocation $(Build.ArtifactStagingDirectory) -Build'
- pwsh: true
-
- - task: DotNetCoreCLI@2
- displayName: 'Run Enabled Tests'
- inputs:
- command: 'test'
- projects: '$(System.DefaultWorkingDirectory)/src/Authentication/Authentication.Test/*.csproj'
- testRunTitle: 'Run Enabled Tests'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
-
-- job: MSGraphPSSDKValidation_Linux
- displayName: MS Graph PS SDK Auth Validation - Linux
- pool:
- vmImage: 'ubuntu-latest'
- steps:
- - task: DotNetCoreCLI@2
- displayName: 'Run Enabled Tests'
- inputs:
- command: 'test'
- projects: '$(System.DefaultWorkingDirectory)/src/Authentication/Authentication.Test/*.csproj'
- testRunTitle: 'Run Enabled Tests'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
-
-- job: MSGraphPSSDKValidation_MacOS
- displayName: MS Graph PS SDK Auth Validation - MacOS
- pool:
- vmImage: 'macOS-latest'
- steps:
- - task: DotNetCoreCLI@2
- displayName: 'Run Enabled Tests'
- inputs:
- command: 'test'
- projects: '$(System.DefaultWorkingDirectory)/src/Authentication/Authentication.Test/*.csproj'
- testRunTitle: 'Run Enabled Tests'
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
\ No newline at end of file
diff --git a/.azure-pipelines/validate-pr-beta-modules.yml b/.azure-pipelines/validate-pr-beta-modules.yml
deleted file mode 100644
index c89258b16e5..00000000000
--- a/.azure-pipelines/validate-pr-beta-modules.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-# Validate pull requests to master and dev branches for Graph workload modules.
-name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-pr:
- branches:
- include:
- - master
- - dev
- - milestone/*
- paths:
- include:
- - src/Beta/*
- - config/ModulesMapping.jsonc
-trigger: none
-
-variables:
- GRAPH_VERSION: 'beta'
-
-jobs:
-- job: MSGraphPSSDKValidation
- displayName: MS Graph PS SDK Beta Validation
- timeoutInMinutes: 600
- pool:
- name: Microsoft Graph
- demands: 'Agent.Name -equals PS-Build-Agent'
-
- steps:
- - task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
- displayName: 'Run CredScan'
- inputs:
- debugMode: false
-
- # Install Node
- - task: NodeTool@0
- displayName: Node install
- inputs:
- versionSpec: '13.14.0'
-
- - task: Npm@1
- displayName: 'Install AutoRest'
- inputs:
- command: 'custom'
- customCommand: 'install -g autorest'
-
- - task: PowerShell@2
- displayName: 'Generate and Build Graph Resource Modules'
- inputs:
- filePath: '$(System.DefaultWorkingDirectory)/tools/GenerateModules.ps1'
- arguments: '-RepositoryApiKey $(Api_Key) -Build -Test'
- pwsh: true
-
- - task: YodLabs.O365PostMessage.O365PostMessageBuild.O365PostMessageBuild@0
- displayName: 'Graph Client Tooling pipeline fail notification'
- inputs:
- addressType: serviceEndpoint
- serviceEndpointName: 'microsoftgraph pipeline status'
- title: '$(Build.DefinitionName) failure notification'
- text: 'This pipeline has failed. View the build details for further information. This is a blocking failure. '
- condition: and(failed(), ne(variables['Build.Reason'], 'Manual'))
- enabled: true
\ No newline at end of file
diff --git a/.azure-pipelines/weekly-generation.yml b/.azure-pipelines/weekly-generation.yml
index f6ef8293ca7..48a7331a877 100644
--- a/.azure-pipelines/weekly-generation.yml
+++ b/.azure-pipelines/weekly-generation.yml
@@ -42,8 +42,7 @@ stages:
parameters:
ModulesToGenerate: $[ stageDependencies.DownloadOpenAPIDocs.GetLatestDocs.outputs['OpenAPIDocDiff.ModulesWithChanges'] ]
Branch: $[ stageDependencies.DownloadOpenAPIDocs.GetLatestDocs.outputs['ComputeBranch.WeeklyBranch'] ]
- AuthModulePath: "src/Authentication/Authentication/bin/"
- AuthModuleDllPattern: "Microsoft.Graph.Authentication.dll"
+ AuthModulePath: "src/Authentication/Authentication"
ServiceModulePath: "src/"
ModulePrefix: "Microsoft.Graph"
EnableSigning: false
diff --git a/config/ModuleMetadata.json b/config/ModuleMetadata.json
index 801c0dc4fb7..6f82d23b6cb 100644
--- a/config/ModuleMetadata.json
+++ b/config/ModuleMetadata.json
@@ -22,5 +22,5 @@
],
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
- "version": "1.4.2"
+ "version": "1.5.0"
}
diff --git a/config/ModulesMapping.jsonc b/config/ModulesMapping.jsonc
index 6bbd6071a54..665ef8ee5c2 100644
--- a/config/ModulesMapping.jsonc
+++ b/config/ModulesMapping.jsonc
@@ -30,7 +30,7 @@
"SchemaExtensions": "^schemaExtensions\\.",
"Search": "^search\\.|^external\\.",
"Security": "^security\\.",
- "Sites": "^sites.site$|^sites.itemAnalytics$|^sites.columnDefinition$|^sites.contentType$|^sites.drive$|^sites.list$|^sites.sitePage$|^users.site$|^groups.site$|^sites.Functions$|^sites.Actions$",
+ "Sites": "^sites.site$|^sites.itemAnalytics$|^sites.columnDefinition$|^sites.contentType$|^sites.drive$|^sites.list$|^sites.sitePage$|^sites.permission$|^users.site$|^groups.site$|^sites.Functions$|^sites.Actions$",
"Teams": "^teams\\.|^chats\\.|^users.chat$|^appCatalogs.teamsApp$|^users.userTeamwork$|^teamwork\\.|^users.team$|^groups.team$",
"Users": "^users.user$|^users.directoryObject$|^users.licenseDetails$|^users.notification$|^users.outlookUser$|^users.profilePhoto$|^users.userSettings$|^users.extension$|^users.oAuth2PermissionGrant$|^users.todo$",
"Users.Actions": "^users.Actions$",
diff --git a/openApiDocs/beta/Applications.yml b/openApiDocs/beta/Applications.yml
index 376ba848022..0315d11a07a 100644
--- a/openApiDocs/beta/Applications.yml
+++ b/openApiDocs/beta/Applications.yml
@@ -18573,7 +18573,7 @@ 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 application was registered. Read-only.
+ description: 'The date and time the application was registered. The DateTimeOffset 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. Read-only.'
format: date-time
nullable: true
defaultRedirectUri:
@@ -18588,7 +18588,7 @@ components:
nullable: true
groupMembershipClaims:
type: string
- description: 'Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.'
+ description: 'Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of).'
nullable: true
identifierUris:
type: array
@@ -18615,6 +18615,7 @@ components:
format: base64url
notes:
type: string
+ description: Notes relevant for the management of the application.
nullable: true
optionalClaims:
$ref: '#/components/schemas/microsoft.graph.optionalClaims'
@@ -18638,7 +18639,7 @@ components:
description: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable.
signInAudience:
type: string
- description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.'
+ description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below.'
nullable: true
spa:
$ref: '#/components/schemas/microsoft.graph.spaApplication'
@@ -18655,6 +18656,7 @@ components:
nullable: true
uniqueName:
type: string
+ description: The unique identifier that can be assigned to an application as an alternative identifier. Immutable. Read-only.
nullable: true
web:
$ref: '#/components/schemas/microsoft.graph.webApplication'
@@ -18786,7 +18788,7 @@ components:
endDateTime:
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 at which the credential expires.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'''
+ description: 'The date and time at which the credential expires.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
key:
@@ -18803,7 +18805,7 @@ components:
startDateTime:
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 at which the credential becomes valid.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'''
+ description: 'The date and time at which the credential becomes valid.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
type:
@@ -18832,7 +18834,7 @@ components:
endDateTime:
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 at which the password expires represented 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''. Optional.'
+ description: 'The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional.'
format: date-time
nullable: true
hint:
@@ -18852,7 +18854,7 @@ components:
startDateTime:
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 at which the password becomes valid. 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''. Optional.'
+ description: 'The date and time at which the password becomes valid. 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. Optional.'
format: date-time
nullable: true
additionalProperties:
@@ -18982,7 +18984,7 @@ components:
discoveryDateTime:
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: 'Represents the discovery date and time 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'''
+ description: 'Represents the discovery date and time 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
name:
@@ -18998,7 +19000,7 @@ components:
type: boolean
version:
type: string
- description: Read only value that indicates version discovered. Null if discovery has not yet occurred.
+ description: Read only value that indicates version discovered. null if discovery has not yet occurred.
nullable: true
additionalProperties:
type: object
@@ -19206,7 +19208,7 @@ components:
items:
type: string
nullable: true
- description: 'The list of single sign-on modes supported by this application. The supported values are password, saml, external, and oidc.'
+ description: 'The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.'
additionalProperties:
type: object
microsoft.graph.applicationServicePrincipal:
@@ -19228,12 +19230,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -19243,16 +19245,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -19420,6 +19422,7 @@ components:
description: 'Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities.'
appDescription:
type: string
+ description: The description exposed by the associated application.
nullable: true
appDisplayName:
type: string
@@ -19449,6 +19452,7 @@ components:
description: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable.
description:
type: string
+ description: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters.
nullable: true
displayName:
type: string
@@ -19479,6 +19483,7 @@ components:
nullable: true
notes:
type: string
+ description: 'Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters.'
nullable: true
notificationEmailAddresses:
type: array
@@ -19534,7 +19539,7 @@ components:
nullable: true
signInAudience:
type: string
- description: Specifies what Microsoft accounts are supported for the associated application. Read-only.
+ description: 'Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.'
nullable: true
tags:
type: array
@@ -19878,7 +19883,7 @@ components:
nullable: true
value:
type: string
- description: 'Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed.'
+ description: 'Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with ..'
nullable: true
additionalProperties:
type: object
@@ -20121,7 +20126,7 @@ components:
expiration:
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 when this job will expire. 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''.'
+ description: 'Date and time when this job will expire. 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
interval:
@@ -20162,12 +20167,12 @@ components:
steadyStateFirstAchievedTime:
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 time when steady state (no more changes to the process) was first achieved. 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''.'
+ description: 'The time when steady state (no more changes to the process) was first achieved. 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
steadyStateLastAchievedTime:
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 time when steady state (no more changes to the process) was last achieved. 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''.'
+ description: 'The time when steady state (no more changes to the process) was last achieved. 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
synchronizedEntryCountByType:
type: array
@@ -20475,7 +20480,7 @@ components:
deferUpdateDateTime:
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 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'''
+ description: '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
updateWindow:
@@ -20569,7 +20574,7 @@ components:
nullable: true
value:
type: string
- description: 'Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed.'
+ description: 'Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with ..'
nullable: true
additionalProperties:
type: object
@@ -20713,13 +20718,13 @@ components:
expiryDate:
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 expiry date of the custom domain certificate. 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''.'
+ description: 'The expiry date of the custom domain certificate. 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
issueDate:
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 issue date of the custom domain. 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''.'
+ description: 'The issue date of the custom domain. 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
issuerName:
@@ -20818,12 +20823,12 @@ components:
timeBegan:
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: 'Time when this job run began. 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''.'
+ description: 'Time when this job run began. 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
timeEnded:
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: 'Time when this job run ended. 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''.'
+ description: 'Time when this job run ended. 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
additionalProperties:
type: object
@@ -20857,21 +20862,21 @@ components:
currentBegan:
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 when the quarantine was last evaluated and imposed. 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''.'
+ description: 'Date and time when the quarantine was last evaluated and imposed. 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
error:
$ref: '#/components/schemas/microsoft.graph.synchronizationError'
nextAttempt:
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 when the next attempt to re-evaluate the quarantine will be made. 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''.'
+ description: 'Date and time when the next attempt to re-evaluate the quarantine will be made. 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
reason:
$ref: '#/components/schemas/microsoft.graph.quarantineReason'
seriesBegan:
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 when the quarantine was first imposed in this series (a series starts when a quarantine is first imposed, and is reset as soon as the quarantine is lifted). 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''.'
+ description: 'Date and time when the quarantine was first imposed in this series (a series starts when a quarantine is first imposed, and is reset as soon as the quarantine is lifted). 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
seriesCount:
type: integer
diff --git a/openApiDocs/beta/Calendar.yml b/openApiDocs/beta/Calendar.yml
index dc0be580f3b..394e9823cde 100644
--- a/openApiDocs/beta/Calendar.yml
+++ b/openApiDocs/beta/Calendar.yml
@@ -46388,15 +46388,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -46408,11 +46408,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -46420,11 +46420,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -46578,7 +46578,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -46676,7 +46676,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 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'''
+ description: '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
name:
@@ -46847,13 +46847,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -46992,7 +46992,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
diff --git a/openApiDocs/beta/ChangeNotifications.yml b/openApiDocs/beta/ChangeNotifications.yml
index a4998977780..2239fb64e52 100644
--- a/openApiDocs/beta/ChangeNotifications.yml
+++ b/openApiDocs/beta/ChangeNotifications.yml
@@ -304,9 +304,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
diff --git a/openApiDocs/beta/CloudCommunications.yml b/openApiDocs/beta/CloudCommunications.yml
index db1a006b2d2..87019ab7508 100644
--- a/openApiDocs/beta/CloudCommunications.yml
+++ b/openApiDocs/beta/CloudCommunications.yml
@@ -2815,6 +2815,7 @@ paths:
- startDateTime
- subject
- videoTeleconferenceId
+ - meetingAttendanceReport
type: string
- name: $expand
in: query
@@ -2827,6 +2828,7 @@ paths:
items:
enum:
- '*'
+ - meetingAttendanceReport
type: string
responses:
'200':
@@ -2923,6 +2925,7 @@ paths:
- startDateTime
- subject
- videoTeleconferenceId
+ - meetingAttendanceReport
type: string
- name: $expand
in: query
@@ -2935,6 +2938,7 @@ paths:
items:
enum:
- '*'
+ - meetingAttendanceReport
type: string
responses:
'200':
@@ -2943,6 +2947,11 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.onlineMeeting'
+ links:
+ meetingAttendanceReport:
+ operationId: communications.OnlineMeetings.GetMeetingAttendanceReport
+ parameters:
+ onlineMeeting-id: $request.path.onlineMeeting-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -3100,6 +3109,105 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport':
+ get:
+ tags:
+ - communications.onlineMeeting
+ summary: Get meetingAttendanceReport from communications
+ operationId: communications.onlineMeetings_GetMeetingAttendanceReport
+ parameters:
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - attendanceRecords
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - communications.onlineMeeting
+ summary: Update the navigation property meetingAttendanceReport in communications
+ operationId: communications.onlineMeetings_UpdateMeetingAttendanceReport
+ parameters:
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - communications.onlineMeeting
+ summary: Delete navigation property meetingAttendanceReport for communications
+ operationId: communications.onlineMeetings_DeleteMeetingAttendanceReport
+ parameters:
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/communications/onlineMeetings/{onlineMeeting-id}/recording':
get:
tags:
@@ -3401,6 +3509,74 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/communications/presences/{presence-id}/microsoft.graph.clearPresence':
+ post:
+ tags:
+ - communications.Actions
+ summary: Invoke action clearPresence
+ operationId: communications.presences_clearPresence
+ parameters:
+ - name: presence-id
+ in: path
+ description: 'key: id of presence'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: presence
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ sessionId:
+ type: string
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/communications/presences/{presence-id}/microsoft.graph.setPresence':
+ post:
+ tags:
+ - communications.Actions
+ summary: Invoke action setPresence
+ operationId: communications.presences_setPresence
+ parameters:
+ - name: presence-id
+ in: path
+ description: 'key: id of presence'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: presence
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ sessionId:
+ type: string
+ availability:
+ type: string
+ activity:
+ type: string
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/users/{user-id}/onlineMeetings':
get:
tags:
@@ -3519,6 +3695,7 @@ paths:
- startDateTime
- subject
- videoTeleconferenceId
+ - meetingAttendanceReport
type: string
- name: $expand
in: query
@@ -3531,6 +3708,7 @@ paths:
items:
enum:
- '*'
+ - meetingAttendanceReport
type: string
responses:
'200':
@@ -3642,6 +3820,7 @@ paths:
- startDateTime
- subject
- videoTeleconferenceId
+ - meetingAttendanceReport
type: string
- name: $expand
in: query
@@ -3654,6 +3833,7 @@ paths:
items:
enum:
- '*'
+ - meetingAttendanceReport
type: string
responses:
'200':
@@ -3662,6 +3842,12 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.onlineMeeting'
+ links:
+ meetingAttendanceReport:
+ operationId: users.OnlineMeetings.GetMeetingAttendanceReport
+ parameters:
+ user-id: $request.path.user-id
+ onlineMeeting-id: $request.path.onlineMeeting-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -3861,6 +4047,126 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/users/{user-id}/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport':
+ get:
+ tags:
+ - users.onlineMeeting
+ summary: Get meetingAttendanceReport from users
+ operationId: users.onlineMeetings_GetMeetingAttendanceReport
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - attendanceRecords
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - users.onlineMeeting
+ summary: Update the navigation property meetingAttendanceReport in users
+ operationId: users.onlineMeetings_UpdateMeetingAttendanceReport
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - users.onlineMeeting
+ summary: Delete navigation property meetingAttendanceReport for users
+ operationId: users.onlineMeetings_DeleteMeetingAttendanceReport
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: onlineMeeting-id
+ in: path
+ description: 'key: id of onlineMeeting'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: onlineMeeting
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording':
get:
tags:
@@ -4063,7 +4369,7 @@ components:
endDateTime:
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: 'UTC time when the last user left the call. The DateTimeOffset 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'''
+ description: 'UTC time when the last user left the call. The DateTimeOffset 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
joinWebUrl:
type: string
@@ -4072,7 +4378,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: 'UTC time when the call record was created. The DatetimeOffset 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'''
+ description: 'UTC time when the call record was created. The DatetimeOffset 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
modalities:
type: array
@@ -4089,7 +4395,7 @@ components:
startDateTime:
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: 'UTC time when the first user joined the call. The DatetimeOffset 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'''
+ description: 'UTC time when the first user joined the call. The DatetimeOffset 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
type:
$ref: '#/components/schemas/microsoft.graph.callRecords.callType'
@@ -4117,7 +4423,7 @@ components:
endDateTime:
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: 'UTC time when the last user left the session. The DateTimeOffset 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'''
+ description: 'UTC time when the last user left the session. The DateTimeOffset 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
failureInfo:
$ref: '#/components/schemas/microsoft.graph.callRecords.failureInfo'
@@ -4129,7 +4435,7 @@ components:
startDateTime:
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: 'UTC fime when the first user joined the session. The DateTimeOffset 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'''
+ description: 'UTC fime when the first user joined the session. The DateTimeOffset 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
segments:
type: array
@@ -4151,7 +4457,7 @@ components:
endDateTime:
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: 'UTC time when the segment ended. The DateTimeOffset 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'''
+ description: 'UTC time when the segment ended. The DateTimeOffset 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
failureInfo:
$ref: '#/components/schemas/microsoft.graph.callRecords.failureInfo'
@@ -4163,7 +4469,7 @@ components:
startDateTime:
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: 'UTC time when the segment started. The DateTimeOffset 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'''
+ description: 'UTC time when the segment started. The DateTimeOffset 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
additionalProperties:
type: object
@@ -4586,7 +4892,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -4652,6 +4958,20 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ additionalProperties:
+ type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
additionalProperties:
type: object
microsoft.graph.chatInfo:
@@ -5184,6 +5504,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -5253,6 +5574,30 @@ components:
$ref: '#/components/schemas/microsoft.graph.lobbyBypassScope'
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.meetingParticipantInfo:
title: meetingParticipantInfo
type: object
@@ -5610,7 +5955,7 @@ components:
endDateTime:
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: 'UTC time when the stream ended. The DateTimeOffset 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'''
+ description: 'UTC time when the stream ended. The DateTimeOffset 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
lowFrameRateRatio:
@@ -5664,7 +6009,7 @@ components:
startDateTime:
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: 'UTC time when the stream started. The DateTimeOffset 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'''
+ description: 'UTC time when the stream started. The DateTimeOffset 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
streamDirection:
@@ -5760,6 +6105,28 @@ components:
- everyone
- unknownFutureValue
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.onlineMeetingRole:
title: onlineMeetingRole
enum:
diff --git a/openApiDocs/beta/Compliance.yml b/openApiDocs/beta/Compliance.yml
index de5b02092c6..7779d99041b 100644
--- a/openApiDocs/beta/Compliance.yml
+++ b/openApiDocs/beta/Compliance.yml
@@ -1173,6 +1173,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -1199,6 +1200,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -1287,6 +1289,12 @@ paths:
case-id: $request.path.case-id
custodian-id: $request.path.custodian-id
siteSource-id: $request.path.siteSource-id
+ termStore:
+ operationId: compliance.ediscovery.cases.custodians.siteSources.Site.GetTermStore
+ parameters:
+ case-id: $request.path.case-id
+ custodian-id: $request.path.custodian-id
+ siteSource-id: $request.path.siteSource-id
onenote:
operationId: compliance.ediscovery.cases.custodians.siteSources.Site.GetOnenote
parameters:
@@ -1410,6 +1418,12 @@ paths:
case-id: $request.path.case-id
custodian-id: $request.path.custodian-id
siteSource-id: $request.path.siteSource-id
+ termStore:
+ operationId: compliance.ediscovery.cases.custodians.siteSources.Site.GetTermStore
+ parameters:
+ case-id: $request.path.case-id
+ custodian-id: $request.path.custodian-id
+ siteSource-id: $request.path.siteSource-id
onenote:
operationId: compliance.ediscovery.cases.custodians.siteSources.Site.GetOnenote
parameters:
@@ -3343,6 +3357,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -3369,6 +3384,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -3457,6 +3473,12 @@ paths:
case-id: $request.path.case-id
legalHold-id: $request.path.legalHold-id
siteSource-id: $request.path.siteSource-id
+ termStore:
+ operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.GetTermStore
+ parameters:
+ case-id: $request.path.case-id
+ legalHold-id: $request.path.legalHold-id
+ siteSource-id: $request.path.siteSource-id
onenote:
operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.GetOnenote
parameters:
@@ -3580,6 +3602,12 @@ paths:
case-id: $request.path.case-id
legalHold-id: $request.path.legalHold-id
siteSource-id: $request.path.siteSource-id
+ termStore:
+ operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.GetTermStore
+ parameters:
+ case-id: $request.path.case-id
+ legalHold-id: $request.path.legalHold-id
+ siteSource-id: $request.path.siteSource-id
onenote:
operationId: compliance.ediscovery.cases.legalHolds.siteSources.Site.GetOnenote
parameters:
@@ -5921,7 +5949,7 @@ paths:
sourceCollection:
$ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection'
additionalData:
- $ref: '#/components/schemas/microsoft.graph.ediscovery.dataCollectionScope'
+ $ref: '#/components/schemas/microsoft.graph.ediscovery.additionalDataOptions'
additionalProperties:
type: object
required: true
@@ -6491,8 +6519,6 @@ paths:
- lastModifiedBy desc
- lastModifiedDateTime
- lastModifiedDateTime desc
- - tenantSources
- - tenantSources desc
type: string
- name: $select
in: query
@@ -6513,7 +6539,6 @@ paths:
- displayName
- lastModifiedBy
- lastModifiedDateTime
- - tenantSources
- additionalSources
- addToReviewSetOperation
- custodianSources
@@ -6630,7 +6655,6 @@ paths:
- displayName
- lastModifiedBy
- lastModifiedDateTime
- - tenantSources
- additionalSources
- addToReviewSetOperation
- custodianSources
@@ -8588,27 +8612,33 @@ components:
closedDateTime:
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 case was closed. 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
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 entity was 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
description:
type: string
+ description: The case description.
nullable: true
displayName:
type: string
+ description: The case name.
nullable: true
externalId:
type: string
+ description: The external case number for customer reference.
nullable: true
lastModifiedBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
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 latest date and time when the case was modified. 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
status:
@@ -8639,10 +8669,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection'
+ description: Returns a list of sourceCollection objects associated with this case.
tags:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.tag'
+ description: Returns a list of tag objects associated to this case.
additionalProperties:
type: object
microsoft.graph.ediscovery.custodian:
@@ -8654,25 +8686,31 @@ components:
acknowledgedDateTime:
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 the custodian acknowledged a hold notification.
format: date-time
nullable: true
applyHoldToSources:
type: boolean
+ description: Identifies whether a custodian's sources were placed on hold during creation.
nullable: true
email:
type: string
+ description: Email address of the custodian.
siteSources:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource'
+ description: Data source entity for SharePoint sites associated with the custodian.
unifiedGroupSources:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource'
+ description: Data source entity for groups associated with the custodian.
userSources:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.userSource'
+ description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site.
additionalProperties:
type: object
microsoft.graph.ediscovery.siteSource:
@@ -8726,6 +8764,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -8751,6 +8790,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -8794,7 +8835,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -8808,7 +8849,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -8852,7 +8893,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -8861,7 +8902,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -8901,7 +8942,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -8934,26 +8975,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -8966,7 +9007,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -9108,6 +9149,7 @@ components:
properties:
email:
type: string
+ description: Email address of the user's mailbox.
includedSources:
$ref: '#/components/schemas/microsoft.graph.ediscovery.sourceType'
additionalProperties:
@@ -9120,33 +9162,40 @@ components:
properties:
contentQuery:
type: string
+ description: 'KQL query that specifies content to be held in the specified locations. To learn more, see Keyword queries and search conditions for Content Search and eDiscovery. To hold all content in the specified locations, leave contentQuery blank.'
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: The date and time the legal hold was created.
format: date-time
nullable: true
description:
type: string
+ description: The legal hold description.
nullable: true
displayName:
type: string
+ description: The display name of the legal hold.
nullable: true
errors:
type: array
items:
type: string
nullable: true
+ description: Lists any errors that happened while placing the hold.
isEnabled:
type: boolean
+ description: Indicates whether the hold is enabled and actively holding content.
nullable: true
lastModifiedBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
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 legal hold was last modified.
format: date-time
nullable: true
status:
@@ -9155,6 +9204,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource'
+ description: Data source entity for SharePoint sites associated with the legal hold.
unifiedGroupSources:
type: array
items:
@@ -9163,6 +9213,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.userSource'
+ description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site.
additionalProperties:
type: object
microsoft.graph.ediscovery.noncustodialDataSource:
@@ -9189,10 +9240,12 @@ 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 dataSource was created.
format: date-time
nullable: true
displayName:
type: string
+ description: The display name of the dataSource. This will be the name of the SharePoint site.
nullable: true
additionalProperties:
type: object
@@ -9207,6 +9260,7 @@ 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: The date and time the operation was completed.
format: date-time
nullable: true
createdBy:
@@ -9214,12 +9268,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 operation was created.
format: date-time
nullable: true
percentProgress:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The progress of the operation.
format: int32
nullable: true
resultInfo:
@@ -9239,15 +9295,18 @@ 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 datetime when the review set was 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. Read-only.'
format: date-time
nullable: true
displayName:
type: string
+ description: The review set name. The name is unique with a maximum limit of 64 characters.
nullable: true
queries:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery'
+ description: Read-only. Nullable.
additionalProperties:
type: object
microsoft.graph.ediscovery.sourceCollection:
@@ -9258,41 +9317,46 @@ components:
properties:
contentQuery:
type: string
+ description: 'The query string in KQL (Keyword Query Language) query. For details, see Keyword queries and search conditions for Content Search and eDiscovery. You can refine searches by using fields paired with values; for example, subject:''Quarterly Financials'' AND Date>=06/01/2016 AND Date<=07/01/2016'
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: The date and time the sourceCollection was created.
format: date-time
nullable: true
dataSourceScopes:
$ref: '#/components/schemas/microsoft.graph.ediscovery.dataSourceScopes'
description:
type: string
+ description: The description of the sourceCollection
nullable: true
displayName:
type: string
+ description: The display name of the sourceCollection
nullable: true
lastModifiedBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
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 last date and time the sourceCollection was modified.
format: date-time
nullable: true
- tenantSources:
- $ref: '#/components/schemas/microsoft.graph.ediscovery.tenantSources'
additionalSources:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource'
+ description: Adds an additional source to the sourceCollection.
addToReviewSetOperation:
$ref: '#/components/schemas/microsoft.graph.ediscovery.addToReviewSetOperation'
custodianSources:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource'
+ description: Custodian sources that are included in the sourceCollection.
lastEstimateStatisticsOperation:
$ref: '#/components/schemas/microsoft.graph.ediscovery.estimateStatisticsOperation'
noncustodialSources:
@@ -9301,11 +9365,10 @@ components:
$ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource'
additionalProperties:
type: object
- microsoft.graph.ediscovery.dataCollectionScope:
- title: dataCollectionScope
+ microsoft.graph.ediscovery.additionalDataOptions:
+ title: additionalDataOptions
enum:
- allVersions
- - conversations
- linkedFiles
- unknownFutureValue
type: string
@@ -9338,20 +9401,24 @@ 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 time and date when the query was 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
displayName:
type: string
+ description: The name of the query.
nullable: true
lastModifiedBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
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 query was last modified. 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
query:
type: string
+ description: 'The query string in KQL (Keyword Query Language) query. For details, see Document metadata fields in Advanced eDiscovery. This field maps directly to the keywords condition. You can refine searches by using fields listed in the searchable field name paired with values; for example, subject:''Quarterly Financials'' AND Date>=06/01/2016 AND Date<=07/01/2016.'
nullable: true
additionalProperties:
type: object
@@ -9367,19 +9434,23 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: The description for the tag.
nullable: true
displayName:
type: string
+ description: Display name of the tag.
nullable: true
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 tag was last modified.
format: date-time
nullable: true
childTags:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.ediscovery.tag'
+ description: Returns the tags that are a child of a tag.
parent:
$ref: '#/components/schemas/microsoft.graph.ediscovery.tag'
additionalProperties:
@@ -9418,30 +9489,36 @@ components:
properties:
indexedItemCount:
type: integer
+ description: The estimated count of items for the sourceCollection that matched the content query.
format: int64
nullable: true
indexedItemsSize:
type: integer
+ description: The estimated size of items for the sourceCollection that matched the content query.
format: int64
nullable: true
mailboxCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of mailboxes that had search hits.
format: int32
nullable: true
siteCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of mailboxes that had search hits.
format: int32
nullable: true
unindexedItemCount:
type: integer
+ description: The estimated count of unindexed items for the collection.
format: int64
nullable: true
unindexedItemsSize:
type: integer
+ description: The estimated size of unindexed items for the collection.
format: int64
nullable: true
sourceCollection:
@@ -9684,12 +9761,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -9703,6 +9783,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -9737,6 +9818,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -9757,6 +9839,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -9770,6 +9853,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -9785,6 +9869,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -9794,10 +9879,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.drive:
@@ -9957,6 +10044,32 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.onenote:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -10116,12 +10229,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -10131,16 +10244,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -10185,18 +10298,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -10239,15 +10357,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -10259,11 +10377,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -10271,11 +10389,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -10404,7 +10522,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -10498,7 +10616,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -10538,7 +10656,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -10641,7 +10759,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -10682,8 +10800,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -10721,6 +10837,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.ediscovery.legalHoldStatus:
@@ -10784,13 +10902,6 @@ components:
- allCaseNoncustodialDataSources
- unknownFutureValue
type: string
- microsoft.graph.ediscovery.tenantSources:
- title: tenantSources
- enum:
- - allMailboxes
- - allSites
- - unknownFutureValue
- type: string
microsoft.graph.ediscovery.childSelectability:
title: childSelectability
enum:
@@ -10958,7 +11069,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -10975,7 +11086,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -11066,7 +11177,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -11111,7 +11222,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -11223,12 +11334,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -11303,6 +11414,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -11644,6 +11759,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -11721,9 +11837,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -11793,13 +11911,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -11811,18 +11932,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -11842,9 +11968,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -11963,6 +12091,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -11986,6 +12116,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -12126,9 +12258,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -12228,6 +12362,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.notebook:
allOf:
- $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel'
@@ -12276,7 +12488,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -12310,7 +12522,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -12548,13 +12760,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -12693,7 +12905,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -12740,7 +12952,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 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'''
+ description: '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
name:
@@ -12786,7 +12998,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -12833,7 +13045,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -12977,99 +13189,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -13234,79 +13353,172 @@ components:
type: object
additionalProperties:
type: object
- odata.error.main:
- required:
- - code
- - message
- type: object
- properties:
- code:
- type: string
- message:
- type: string
- target:
- type: string
- details:
- type: array
- items:
- $ref: '#/components/schemas/odata.error.detail'
- innererror:
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
type: object
- additionalProperties:
- type: object
- description: The structure of this object is service-specific
- additionalProperties:
- type: object
- microsoft.graph.signInActivity:
- title: signInActivity
- type: object
- properties:
- lastSignInDateTime:
- 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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
- format: date-time
- nullable: true
- lastSignInRequestId:
- type: string
- description: Request ID of the last sign-in performed by this user.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.assignedPlan:
- title: assignedPlan
- type: object
- properties:
- assignedDateTime:
- 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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
- format: date-time
- nullable: true
- capabilityStatus:
- type: string
- description: 'Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.'
- nullable: true
- service:
- type: string
- description: 'The name of the service; for example, ''Exchange''.'
- nullable: true
- servicePlanId:
- pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
- type: string
- description: A GUID that identifies the service plan.
- format: uuid
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.deviceKey:
- title: deviceKey
- type: object
- properties:
- deviceId:
- pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
- type: string
- format: uuid
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
+ odata.error.main:
+ required:
+ - code
+ - message
+ type: object
+ properties:
+ code:
+ type: string
+ message:
+ type: string
+ target:
+ type: string
+ details:
+ type: array
+ items:
+ $ref: '#/components/schemas/odata.error.detail'
+ innererror:
+ type: object
+ additionalProperties:
+ type: object
+ description: The structure of this object is service-specific
+ additionalProperties:
+ type: object
+ microsoft.graph.signInActivity:
+ title: signInActivity
+ type: object
+ properties:
+ lastSignInDateTime:
+ 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 interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ format: date-time
+ nullable: true
+ lastSignInRequestId:
+ type: string
+ description: Request ID of the last sign-in performed by this user.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.assignedPlan:
+ title: assignedPlan
+ type: object
+ properties:
+ assignedDateTime:
+ 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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
+ capabilityStatus:
+ type: string
+ description: 'Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.'
+ nullable: true
+ service:
+ type: string
+ description: 'The name of the service; for example, ''Exchange''.'
+ nullable: true
+ servicePlanId:
+ pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
+ type: string
+ description: A GUID that identifies the service plan.
+ format: uuid
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.deviceKey:
+ title: deviceKey
+ type: object
+ properties:
+ deviceId:
+ pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
+ type: string
+ format: uuid
nullable: true
keyMaterial:
type: string
@@ -13597,6 +13809,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -13693,7 +13943,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -14006,7 +14256,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -14019,7 +14269,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -14198,20 +14448,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -14235,7 +14490,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -14243,7 +14498,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -14292,13 +14547,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -14406,6 +14661,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -14999,6 +15259,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -15187,13 +15449,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -15202,7 +15464,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -15242,6 +15504,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -15261,7 +15524,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -15283,12 +15546,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -15298,10 +15561,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -15313,12 +15577,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -15328,7 +15595,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -15389,7 +15656,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -15455,6 +15722,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -15562,6 +15831,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -15920,6 +16194,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -16085,6 +16370,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -16252,31 +16548,129 @@ components:
type: object
additionalProperties:
type: object
- microsoft.graph.onenoteEntityHierarchyModel:
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel'
- - title: onenoteEntityHierarchyModel
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
type: object
properties:
- createdBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- displayName:
+ 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 name of the notebook.
+ description: Date and time of term creation. Read-only
+ format: date-time
nullable: true
- lastModifiedBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: Last date and time of term modification. Read-only
format: date-time
nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
additionalProperties:
type: object
- microsoft.graph.notebookLinks:
- title: notebookLinks
- type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
+ microsoft.graph.onenoteEntityHierarchyModel:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel'
+ - title: onenoteEntityHierarchyModel
+ type: object
+ properties:
+ createdBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ displayName:
+ type: string
+ description: The name of the notebook.
+ nullable: true
+ lastModifiedBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ 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 when the notebook was last modified. The timestamp 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. Read-only.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.notebookLinks:
+ title: notebookLinks
+ type: object
properties:
oneNoteClientUrl:
$ref: '#/components/schemas/microsoft.graph.externalLink'
@@ -16337,7 +16731,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -16726,7 +17120,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -16738,7 +17132,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -16746,7 +17140,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -16787,7 +17181,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -16810,224 +17204,6 @@ components:
- moderate
- unknownFutureValue
type: string
- microsoft.graph.operationStatus:
- title: operationStatus
- enum:
- - NotStarted
- - Running
- - Completed
- - Failed
- type: string
- microsoft.graph.timeClockSettings:
- title: timeClockSettings
- type: object
- properties:
- approvedLocation:
- $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
- additionalProperties:
- type: object
- microsoft.graph.offerShiftRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: offerShiftRequest
- type: object
- properties:
- recipientActionDateTime:
- 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 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'''
- format: date-time
- nullable: true
- recipientActionMessage:
- type: string
- description: Custom message sent by recipient of the offer shift request.
- nullable: true
- recipientUserId:
- type: string
- description: User id of the recipient of the offer shift request.
- nullable: true
- senderShiftId:
- type: string
- description: User id of the sender of the offer shift request.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShiftChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: openShiftChangeRequest
- type: object
- properties:
- openShiftId:
- type: string
- description: ID for the open shift.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShift:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: openShift
- type: object
- properties:
- draftOpenShift:
- $ref: '#/components/schemas/microsoft.graph.openShiftItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- schedulingGroupId:
- type: string
- description: ID for the scheduling group that the open shift belongs to.
- nullable: true
- sharedOpenShift:
- $ref: '#/components/schemas/microsoft.graph.openShiftItem'
- additionalProperties:
- type: object
- microsoft.graph.schedulingGroup:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: schedulingGroup
- type: object
- properties:
- displayName:
- type: string
- description: The display name for the schedulingGroup. Required.
- nullable: true
- isActive:
- type: boolean
- description: Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.
- nullable: true
- userIds:
- type: array
- items:
- type: string
- nullable: true
- description: The list of user IDs that are a member of the schedulingGroup. Required.
- additionalProperties:
- type: object
- microsoft.graph.shift:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: shift
- type: object
- properties:
- draftShift:
- $ref: '#/components/schemas/microsoft.graph.shiftItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- schedulingGroupId:
- type: string
- description: ID of the scheduling group the shift is part of. Required.
- nullable: true
- sharedShift:
- $ref: '#/components/schemas/microsoft.graph.shiftItem'
- userId:
- type: string
- description: ID of the user assigned to the shift. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.swapShiftsChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- - title: swapShiftsChangeRequest
- type: object
- properties:
- recipientShiftId:
- type: string
- description: Shift ID for the recipient user with whom the request is to swap.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeCard:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeCard
- type: object
- properties:
- breaks:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
- clockInEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- clockOutEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- confirmedBy:
- $ref: '#/components/schemas/microsoft.graph.confirmedBy'
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- originalEntry:
- $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
- state:
- $ref: '#/components/schemas/microsoft.graph.timeCardState'
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffReason:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOffReason
- type: object
- properties:
- displayName:
- type: string
- description: The name of the timeOffReason. Required.
- nullable: true
- iconType:
- $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
- isActive:
- type: boolean
- description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: timeOffRequest
- type: object
- properties:
- endDateTime:
- 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 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'''
- format: date-time
- nullable: true
- startDateTime:
- 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 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'''
- format: date-time
- nullable: true
- timeOffReasonId:
- type: string
- description: The reason for the time off.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOff:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOff
- type: object
- properties:
- draftTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- sharedTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- userId:
- type: string
- description: ID of the user assigned to the timeOff. Required.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.channelMembershipType:
title: channelMembershipType
enum:
@@ -17071,11 +17247,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -17106,7 +17283,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -17135,15 +17312,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -17205,6 +17385,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -17213,6 +17395,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -17238,6 +17421,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.operationError:
@@ -17298,17 +17485,235 @@ components:
nullable: true
additionalProperties:
type: object
- odata.error.detail:
- required:
- - code
- - message
- type: object
- properties:
- code:
- type: string
- message:
- type: string
- target:
+ microsoft.graph.operationStatus:
+ title: operationStatus
+ enum:
+ - NotStarted
+ - Running
+ - Completed
+ - Failed
+ type: string
+ microsoft.graph.timeClockSettings:
+ title: timeClockSettings
+ type: object
+ properties:
+ approvedLocation:
+ $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ additionalProperties:
+ type: object
+ microsoft.graph.offerShiftRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: offerShiftRequest
+ type: object
+ properties:
+ recipientActionDateTime:
+ 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 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
+ recipientActionMessage:
+ type: string
+ description: Custom message sent by recipient of the offer shift request.
+ nullable: true
+ recipientUserId:
+ type: string
+ description: User id of the recipient of the offer shift request.
+ nullable: true
+ senderShiftId:
+ type: string
+ description: User id of the sender of the offer shift request.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.openShiftChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: openShiftChangeRequest
+ type: object
+ properties:
+ openShiftId:
+ type: string
+ description: ID for the open shift.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.openShift:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: openShift
+ type: object
+ properties:
+ draftOpenShift:
+ $ref: '#/components/schemas/microsoft.graph.openShiftItem'
+ isStagedForDeletion:
+ type: boolean
+ nullable: true
+ schedulingGroupId:
+ type: string
+ description: ID for the scheduling group that the open shift belongs to.
+ nullable: true
+ sharedOpenShift:
+ $ref: '#/components/schemas/microsoft.graph.openShiftItem'
+ additionalProperties:
+ type: object
+ microsoft.graph.schedulingGroup:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: schedulingGroup
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The display name for the schedulingGroup. Required.
+ nullable: true
+ isActive:
+ type: boolean
+ description: Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.
+ nullable: true
+ userIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: The list of user IDs that are a member of the schedulingGroup. Required.
+ additionalProperties:
+ type: object
+ microsoft.graph.shift:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: shift
+ type: object
+ properties:
+ draftShift:
+ $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ isStagedForDeletion:
+ type: boolean
+ nullable: true
+ schedulingGroupId:
+ type: string
+ description: ID of the scheduling group the shift is part of. Required.
+ nullable: true
+ sharedShift:
+ $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ userId:
+ type: string
+ description: ID of the user assigned to the shift. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.swapShiftsChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ - title: swapShiftsChangeRequest
+ type: object
+ properties:
+ recipientShiftId:
+ type: string
+ description: Shift ID for the recipient user with whom the request is to swap.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCard:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeCard
+ type: object
+ properties:
+ breaks:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
+ clockInEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ clockOutEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ confirmedBy:
+ $ref: '#/components/schemas/microsoft.graph.confirmedBy'
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ originalEntry:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
+ state:
+ $ref: '#/components/schemas/microsoft.graph.timeCardState'
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOffReason:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOffReason
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the timeOffReason. Required.
+ nullable: true
+ iconType:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
+ isActive:
+ type: boolean
+ description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOffRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: timeOffRequest
+ type: object
+ properties:
+ endDateTime:
+ 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 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
+ startDateTime:
+ 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 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
+ timeOffReasonId:
+ type: string
+ description: The reason for the time off.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOff:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOff
+ type: object
+ properties:
+ draftTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
+ isStagedForDeletion:
+ type: boolean
+ nullable: true
+ sharedTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
+ userId:
+ type: string
+ description: ID of the user assigned to the timeOff. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ odata.error.detail:
+ required:
+ - code
+ - message
+ type: object
+ properties:
+ code:
+ type: string
+ message:
+ type: string
+ target:
type: string
additionalProperties:
type: object
@@ -17572,7 +17977,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -17925,6 +18330,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -17936,6 +18342,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -17947,36 +18354,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -17993,7 +18403,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -18008,16 +18418,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -18040,7 +18460,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -18060,7 +18480,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -18120,6 +18540,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -18411,11 +18853,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -19285,6 +19728,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -20043,6 +20496,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -20140,6 +20594,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -20187,6 +20653,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -20305,7 +20772,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -20604,6 +21071,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -20616,6 +21091,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -20849,6 +21336,44 @@ components:
$ref: '#/components/schemas/microsoft.graph.publicationFacet'
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.externalLink:
title: externalLink
type: object
@@ -21131,197 +21656,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.scheduleChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: scheduleChangeRequest
- type: object
- properties:
- assignedTo:
- $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequestActor'
- managerActionDateTime:
- 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
- format: date-time
- nullable: true
- managerActionMessage:
- type: string
- nullable: true
- managerUserId:
- type: string
- nullable: true
- senderDateTime:
- 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
- format: date-time
- nullable: true
- senderMessage:
- type: string
- nullable: true
- senderUserId:
- type: string
- nullable: true
- state:
- $ref: '#/components/schemas/microsoft.graph.scheduleChangeState'
- additionalProperties:
- type: object
- microsoft.graph.changeTrackedEntity:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: changeTrackedEntity
- type: object
- properties:
- 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: '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'''
- format: date-time
- nullable: true
- lastModifiedBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- 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 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'''
- format: date-time
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShiftItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.shiftItem'
- - title: openShiftItem
- type: object
- properties:
- openSlotCount:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: Count of the number of slots for the given open shift.
- format: int32
- additionalProperties:
- type: object
- microsoft.graph.shiftItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
- - title: shiftItem
- type: object
- properties:
- activities:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shiftActivity'
- description: 'An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required.'
- displayName:
- type: string
- description: The shift label of the shiftItem.
- nullable: true
- notes:
- type: string
- description: The shift notes for the shiftItem.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeCardBreak:
- title: timeCardBreak
- type: object
- properties:
- breakId:
- type: string
- nullable: true
- end:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- start:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- additionalProperties:
- type: object
- microsoft.graph.timeCardEvent:
- title: timeCardEvent
- type: object
- properties:
- atApprovedLocation:
- type: boolean
- nullable: true
- dateTime:
- 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
- format: date-time
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- additionalProperties:
- type: object
- microsoft.graph.confirmedBy:
- title: confirmedBy
- enum:
- - none
- - user
- - manager
- - unknownFutureValue
- type: string
- microsoft.graph.timeCardEntry:
- title: timeCardEntry
- type: object
- properties:
- breaks:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
- clockInEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- clockOutEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- additionalProperties:
- type: object
- microsoft.graph.timeCardState:
- title: timeCardState
- enum:
- - clockedIn
- - onBreak
- - clockedOut
- - unknownFutureValue
- type: string
- microsoft.graph.timeOffReasonIconType:
- title: timeOffReasonIconType
- enum:
- - none
- - car
- - calendar
- - running
- - plane
- - firstAid
- - doctor
- - notWorking
- - clock
- - juryDuty
- - globe
- - cup
- - phone
- - weather
- - umbrella
- - piggyBank
- - dog
- - cake
- - trafficCone
- - pin
- - sunny
- - unknownFutureValue
- type: string
- microsoft.graph.timeOffItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
- - title: timeOffItem
- type: object
- properties:
- timeOffReasonId:
- type: string
- description: ID of the timeOffReason for this timeOffItem. Required.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.replyRestriction:
title: replyRestriction
enum:
@@ -21373,9 +21707,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -21437,7 +21773,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -21448,19 +21784,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -21473,39 +21799,251 @@ components:
nullable: true
entityId:
type: string
- description: Identifier for the entity hosted by the tab provider.
+ description: Identifier for the entity hosted by the tab provider.
+ nullable: true
+ removeUrl:
+ type: string
+ description: Url called by Teams client when a Tab is removed using the Teams Client.
+ nullable: true
+ websiteUrl:
+ type: string
+ description: Url for showing tab contents outside of Teams.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppDistributionMethod:
+ title: teamsAppDistributionMethod
+ enum:
+ - store
+ - organization
+ - sideloaded
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppPublishingState:
+ title: teamsAppPublishingState
+ enum:
+ - submitted
+ - rejected
+ - published
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkBot:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkBot
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
+ microsoft.graph.scheduleChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: scheduleChangeRequest
+ type: object
+ properties:
+ assignedTo:
+ $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequestActor'
+ managerActionDateTime:
+ 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
+ format: date-time
+ nullable: true
+ managerActionMessage:
+ type: string
+ nullable: true
+ managerUserId:
+ type: string
+ nullable: true
+ senderDateTime:
+ 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
+ format: date-time
+ nullable: true
+ senderMessage:
+ type: string
+ nullable: true
+ senderUserId:
+ type: string
+ nullable: true
+ state:
+ $ref: '#/components/schemas/microsoft.graph.scheduleChangeState'
+ additionalProperties:
+ type: object
+ microsoft.graph.changeTrackedEntity:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: changeTrackedEntity
+ type: object
+ properties:
+ 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: '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
+ lastModifiedBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ 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 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
+ additionalProperties:
+ type: object
+ microsoft.graph.openShiftItem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ - title: openShiftItem
+ type: object
+ properties:
+ openSlotCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Count of the number of slots for the given open shift.
+ format: int32
+ additionalProperties:
+ type: object
+ microsoft.graph.shiftItem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
+ - title: shiftItem
+ type: object
+ properties:
+ activities:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shiftActivity'
+ description: 'An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required.'
+ displayName:
+ type: string
+ description: The shift label of the shiftItem.
+ nullable: true
+ notes:
+ type: string
+ description: The shift notes for the shiftItem.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardBreak:
+ title: timeCardBreak
+ type: object
+ properties:
+ breakId:
+ type: string
nullable: true
- removeUrl:
- type: string
- description: Url called by Teams client when a Tab is removed using the Teams Client.
+ end:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ start:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardEvent:
+ title: timeCardEvent
+ type: object
+ properties:
+ atApprovedLocation:
+ type: boolean
nullable: true
- websiteUrl:
+ dateTime:
+ 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: Url for showing tab contents outside of Teams.
- nullable: true
+ format: date-time
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
additionalProperties:
type: object
- microsoft.graph.teamsAppDistributionMethod:
- title: teamsAppDistributionMethod
+ microsoft.graph.confirmedBy:
+ title: confirmedBy
enum:
- - store
- - organization
- - sideloaded
+ - none
+ - user
+ - manager
- unknownFutureValue
type: string
- microsoft.graph.teamsAppPublishingState:
- title: teamsAppPublishingState
+ microsoft.graph.timeCardEntry:
+ title: timeCardEntry
+ type: object
+ properties:
+ breaks:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
+ clockInEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ clockOutEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardState:
+ title: timeCardState
enum:
- - submitted
- - rejected
- - published
+ - clockedIn
+ - onBreak
+ - clockedOut
- unknownFutureValue
type: string
- microsoft.graph.teamworkBot:
+ microsoft.graph.timeOffReasonIconType:
+ title: timeOffReasonIconType
+ enum:
+ - none
+ - car
+ - calendar
+ - running
+ - plane
+ - firstAid
+ - doctor
+ - notWorking
+ - clock
+ - juryDuty
+ - globe
+ - cup
+ - phone
+ - weather
+ - umbrella
+ - piggyBank
+ - dog
+ - cake
+ - trafficCone
+ - pin
+ - sunny
+ - unknownFutureValue
+ type: string
+ microsoft.graph.timeOffItem:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkBot
+ - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
+ - title: timeOffItem
type: object
+ properties:
+ timeOffReasonId:
+ type: string
+ description: ID of the timeOffReason for this timeOffItem. Required.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.externalAudienceScope:
@@ -21691,7 +22229,7 @@ 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 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''.'
+ description: '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
message:
@@ -21997,6 +22535,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -22008,10 +22564,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -22660,6 +23224,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -22667,6 +23232,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.shiftAvailability:
@@ -22989,6 +23555,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -23092,6 +23682,15 @@ components:
description: A collection of resources linked to the task.
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -23303,6 +23902,66 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
+ title: chatMessagePolicyViolationDlpActionTypes
+ enum:
+ - none
+ - notifySender
+ - blockAccess
+ - blockAccessExternal
+ type: string
+ microsoft.graph.chatMessagePolicyViolationPolicyTip:
+ title: chatMessagePolicyViolationPolicyTip
+ type: object
+ properties:
+ complianceUrl:
+ type: string
+ description: 'The URL a user can visit to read about the data loss prevention policies for the organization. (ie, policies about what users shouldn''t say in chats)'
+ nullable: true
+ generalText:
+ type: string
+ description: Explanatory text shown to the sender of the message.
+ nullable: true
+ matchedConditionDescriptions:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: 'The list of improper data in the message that was detected by the data loss prevention app. Each DLP app defines its own conditions, examples include ''Credit Card Number'' and ''Social Security Number''.'
+ additionalProperties:
+ type: object
+ microsoft.graph.chatMessagePolicyViolationUserActionTypes:
+ title: chatMessagePolicyViolationUserActionTypes
+ enum:
+ - none
+ - override
+ - reportFalsePositive
+ type: string
+ microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes:
+ title: chatMessagePolicyViolationVerdictDetailsTypes
+ enum:
+ - none
+ - allowFalsePositiveOverride
+ - allowOverrideWithoutJustification
+ - allowOverrideWithJustification
+ type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scheduleChangeRequestActor:
title: scheduleChangeRequestActor
enum:
@@ -23353,7 +24012,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -23363,56 +24022,13 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
$ref: '#/components/schemas/microsoft.graph.scheduleEntityTheme'
additionalProperties:
type: object
- microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
- title: chatMessagePolicyViolationDlpActionTypes
- enum:
- - none
- - notifySender
- - blockAccess
- - blockAccessExternal
- type: string
- microsoft.graph.chatMessagePolicyViolationPolicyTip:
- title: chatMessagePolicyViolationPolicyTip
- type: object
- properties:
- complianceUrl:
- type: string
- description: 'The URL a user can visit to read about the data loss prevention policies for the organization. (ie, policies about what users shouldn''t say in chats)'
- nullable: true
- generalText:
- type: string
- description: Explanatory text shown to the sender of the message.
- nullable: true
- matchedConditionDescriptions:
- type: array
- items:
- type: string
- nullable: true
- description: 'The list of improper data in the message that was detected by the data loss prevention app. Each DLP app defines its own conditions, examples include ''Credit Card Number'' and ''Social Security Number''.'
- additionalProperties:
- type: object
- microsoft.graph.chatMessagePolicyViolationUserActionTypes:
- title: chatMessagePolicyViolationUserActionTypes
- enum:
- - none
- - override
- - reportFalsePositive
- type: string
- microsoft.graph.chatMessagePolicyViolationVerdictDetailsTypes:
- title: chatMessagePolicyViolationVerdictDetailsTypes
- enum:
- - none
- - allowFalsePositiveOverride
- - allowOverrideWithoutJustification
- - allowOverrideWithJustification
- type: string
microsoft.graph.volumeType:
title: volumeType
enum:
@@ -23746,6 +24362,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -23841,6 +24458,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/beta/CrossDeviceExperiences.yml b/openApiDocs/beta/CrossDeviceExperiences.yml
index bb0cfddd852..79ca08fa5ca 100644
--- a/openApiDocs/beta/CrossDeviceExperiences.yml
+++ b/openApiDocs/beta/CrossDeviceExperiences.yml
@@ -1377,13 +1377,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -1392,7 +1392,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -1432,6 +1432,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -1451,7 +1452,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -1473,12 +1474,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -1488,10 +1489,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -1503,12 +1505,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -1518,7 +1523,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
diff --git a/openApiDocs/beta/DeviceManagement.Actions.yml b/openApiDocs/beta/DeviceManagement.Actions.yml
index 5985e995051..e384dcdbc9d 100644
--- a/openApiDocs/beta/DeviceManagement.Actions.yml
+++ b/openApiDocs/beta/DeviceManagement.Actions.yml
@@ -411,6 +411,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ /deviceManagement/assignmentFilters/microsoft.graph.enable:
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action enable
+ operationId: deviceManagement.assignmentFilters_enable
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ enable:
+ type: boolean
+ default: false
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
/deviceManagement/assignmentFilters/microsoft.graph.validateFilter:
post:
tags:
@@ -439,6 +464,38 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ /deviceManagement/chromeOSOnboardingSettings/microsoft.graph.connect:
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action connect
+ operationId: deviceManagement.chromeOSOnboardingSettings_connect
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ ownerUserPrincipalName:
+ type: string
+ nullable: true
+ serviceAccountCredentials:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingStatus'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl':
post:
tags:
@@ -14495,6 +14552,140 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ /deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport:
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport
+ operationId: deviceManagement.reports_getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ name:
+ type: string
+ nullable: true
+ select:
+ type: array
+ items:
+ type: string
+ nullable: true
+ search:
+ type: string
+ nullable: true
+ groupBy:
+ type: array
+ items:
+ type: string
+ nullable: true
+ orderBy:
+ type: array
+ items:
+ type: string
+ nullable: true
+ skip:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ top:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ sessionId:
+ type: string
+ nullable: true
+ filter:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: string
+ format: base64url
+ nullable: true
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ /deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertSummaryReport:
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action getWindowsQualityUpdateAlertSummaryReport
+ operationId: deviceManagement.reports_getWindowsQualityUpdateAlertSummaryReport
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ name:
+ type: string
+ nullable: true
+ select:
+ type: array
+ items:
+ type: string
+ nullable: true
+ search:
+ type: string
+ nullable: true
+ groupBy:
+ type: array
+ items:
+ type: string
+ nullable: true
+ orderBy:
+ type: array
+ items:
+ type: string
+ nullable: true
+ skip:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ top:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ sessionId:
+ type: string
+ nullable: true
+ filter:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: string
+ format: base64url
+ nullable: true
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
/deviceManagement/reports/microsoft.graph.getWindowsUpdateAlertsPerPolicyPerDeviceReport:
post:
tags:
@@ -15315,6 +15506,47 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/microsoft.graph.deleteDevices':
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action deleteDevices
+ operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_deleteDevices
+ parameters:
+ - name: windowsAutopilotDeploymentProfile-id
+ in: path
+ description: 'key: id of windowsAutopilotDeploymentProfile'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: windowsAutopilotDeploymentProfile
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ serialNumbers:
+ type: array
+ items:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.deletedWindowsAutopilotDeviceState'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/microsoft.graph.assign':
post:
tags:
@@ -15610,6 +15842,39 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ /deviceManagement/windowsAutopilotDeviceIdentities/microsoft.graph.deleteDevices:
+ post:
+ tags:
+ - deviceManagement.Actions
+ summary: Invoke action deleteDevices
+ operationId: deviceManagement.windowsAutopilotDeviceIdentities_deleteDevices
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ serialNumbers:
+ type: array
+ items:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.deletedWindowsAutopilotDeviceState'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
/deviceManagement/windowsAutopilotSettings/microsoft.graph.sync:
post:
tags:
@@ -15739,6 +16004,14 @@ components:
additionalProperties:
type: object
description: Represents result of Validation API.
+ microsoft.graph.chromeOSOnboardingStatus:
+ title: chromeOSOnboardingStatus
+ enum:
+ - unknown
+ - inprogress
+ - onboarded
+ - failed
+ type: string
microsoft.graph.deviceLogCollectionRequest:
title: deviceLogCollectionRequest
type: object
@@ -16518,10 +16791,6 @@ components:
type: string
description: The Import Id of the Windows autopilot device.
nullable: true
- orderIdentifier:
- type: string
- description: Order Id of the Windows autopilot device. - Deprecate
- nullable: true
productKey:
type: string
description: Product Key of the Windows autopilot device.
@@ -16815,6 +17084,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.cloudPcManagementAssignmentTarget'
additionalProperties:
type: object
+ microsoft.graph.deletedWindowsAutopilotDeviceState:
+ title: deletedWindowsAutopilotDeviceState
+ type: object
+ properties:
+ deletionState:
+ $ref: '#/components/schemas/microsoft.graph.windowsAutopilotDeviceDeletionState'
+ deviceRegistrationId:
+ type: string
+ description: ZTD Device Registration ID .
+ nullable: true
+ errorMessage:
+ type: string
+ description: Device deletion error message.
+ nullable: true
+ serialNumber:
+ type: string
+ description: Autopilot Device Serial Number
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.windowsFeatureUpdateProfileAssignment:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -16991,11 +17280,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.managementAgentType:
title: managementAgentType
@@ -17525,6 +17815,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.devicePlatformType'
assignmentFilterType:
$ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilterType'
+ assignmentFilterTypeAndEvaluationResults:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.assignmentFilterTypeAndEvaluationResult'
+ description: A collection of filter types and their corresponding evaluation results.
evaluationDateTime:
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
@@ -17558,6 +17853,14 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.windowsAutopilotDeviceDeletionState:
+ title: windowsAutopilotDeviceDeletionState
+ enum:
+ - unknown
+ - failed
+ - accepted
+ - error
+ type: string
odata.error:
required:
- error
@@ -18196,6 +18499,17 @@ components:
additionalProperties:
type: object
description: Entity representing a setting category
+ microsoft.graph.assignmentFilterTypeAndEvaluationResult:
+ title: assignmentFilterTypeAndEvaluationResult
+ type: object
+ properties:
+ assignmentFilterType:
+ $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilterType'
+ evaluationResult:
+ $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationResult'
+ additionalProperties:
+ type: object
+ description: Represents the filter type and evalaution result of the filter.
microsoft.graph.assignmentFilterEvaluationResult:
title: assignmentFilterEvaluationResult
enum:
diff --git a/openApiDocs/beta/DeviceManagement.Administration.yml b/openApiDocs/beta/DeviceManagement.Administration.yml
index 6956aee7458..2d794d0eeaa 100644
--- a/openApiDocs/beta/DeviceManagement.Administration.yml
+++ b/openApiDocs/beta/DeviceManagement.Administration.yml
@@ -13420,11 +13420,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.managementAgentType:
title: managementAgentType
diff --git a/openApiDocs/beta/DeviceManagement.Enrolment.yml b/openApiDocs/beta/DeviceManagement.Enrolment.yml
index 305dbb2157f..491bfac430a 100644
--- a/openApiDocs/beta/DeviceManagement.Enrolment.yml
+++ b/openApiDocs/beta/DeviceManagement.Enrolment.yml
@@ -3439,8 +3439,6 @@ paths:
- hardwareIdentifier desc
- importId
- importId desc
- - orderIdentifier
- - orderIdentifier desc
- productKey
- productKey desc
- serialNumber
@@ -3463,7 +3461,6 @@ paths:
- groupTag
- hardwareIdentifier
- importId
- - orderIdentifier
- productKey
- serialNumber
- state
@@ -3554,7 +3551,6 @@ paths:
- groupTag
- hardwareIdentifier
- importId
- - orderIdentifier
- productKey
- serialNumber
- state
@@ -3631,6 +3627,234 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice:
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement
+ operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice
+ 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:
+ enum:
+ - id
+ - id desc
+ - autoPilotProfileAssigned
+ - autoPilotProfileAssigned desc
+ - autoPilotRegistered
+ - autoPilotRegistered desc
+ - azureAdJoinType
+ - azureAdJoinType desc
+ - azureAdRegistered
+ - azureAdRegistered desc
+ - deviceName
+ - deviceName desc
+ - managedBy
+ - managedBy desc
+ - manufacturer
+ - manufacturer desc
+ - model
+ - model desc
+ - serialNumber
+ - serialNumber desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - autoPilotProfileAssigned
+ - autoPilotRegistered
+ - azureAdJoinType
+ - azureAdRegistered
+ - deviceName
+ - managedBy
+ - manufacturer
+ - model
+ - serialNumber
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of userExperienceAnalyticsNotAutopilotReadyDevice
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Create new navigation property to userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement
+ operationId: deviceManagement_CreateUserExperienceAnalyticsNotAutopilotReadyDevice
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}':
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement
+ operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - autoPilotProfileAssigned
+ - autoPilotRegistered
+ - azureAdJoinType
+ - azureAdRegistered
+ - deviceName
+ - managedBy
+ - manufacturer
+ - model
+ - serialNumber
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Update the navigation property userExperienceAnalyticsNotAutopilotReadyDevice in deviceManagement
+ operationId: deviceManagement_UpdateUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Delete navigation property userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement
+ operationId: deviceManagement_DeleteUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/deviceManagement/windowsAutopilotDeploymentProfiles:
get:
tags:
@@ -3923,6 +4147,8 @@ paths:
- addressableUserName desc
- azureActiveDirectoryDeviceId
- azureActiveDirectoryDeviceId desc
+ - azureAdDeviceId
+ - azureAdDeviceId desc
- deploymentProfileAssignedDateTime
- deploymentProfileAssignedDateTime desc
- deploymentProfileAssignmentDetailedStatus
@@ -3943,8 +4169,6 @@ paths:
- manufacturer desc
- model
- model desc
- - orderIdentifier
- - orderIdentifier desc
- productKey
- productKey desc
- purchaseOrderIdentifier
@@ -3973,6 +4197,7 @@ paths:
- id
- addressableUserName
- azureActiveDirectoryDeviceId
+ - azureAdDeviceId
- deploymentProfileAssignedDateTime
- deploymentProfileAssignmentDetailedStatus
- deploymentProfileAssignmentStatus
@@ -3983,7 +4208,6 @@ paths:
- managedDeviceId
- manufacturer
- model
- - orderIdentifier
- productKey
- purchaseOrderIdentifier
- resourceName
@@ -4095,6 +4319,7 @@ paths:
- id
- addressableUserName
- azureActiveDirectoryDeviceId
+ - azureAdDeviceId
- deploymentProfileAssignedDateTime
- deploymentProfileAssignmentDetailedStatus
- deploymentProfileAssignmentStatus
@@ -4105,7 +4330,6 @@ paths:
- managedDeviceId
- manufacturer
- model
- - orderIdentifier
- productKey
- purchaseOrderIdentifier
- resourceName
@@ -4863,6 +5087,8 @@ paths:
- addressableUserName desc
- azureActiveDirectoryDeviceId
- azureActiveDirectoryDeviceId desc
+ - azureAdDeviceId
+ - azureAdDeviceId desc
- deploymentProfileAssignedDateTime
- deploymentProfileAssignedDateTime desc
- deploymentProfileAssignmentDetailedStatus
@@ -4883,8 +5109,6 @@ paths:
- manufacturer desc
- model
- model desc
- - orderIdentifier
- - orderIdentifier desc
- productKey
- productKey desc
- purchaseOrderIdentifier
@@ -4913,6 +5137,7 @@ paths:
- id
- addressableUserName
- azureActiveDirectoryDeviceId
+ - azureAdDeviceId
- deploymentProfileAssignedDateTime
- deploymentProfileAssignmentDetailedStatus
- deploymentProfileAssignmentStatus
@@ -4923,7 +5148,6 @@ paths:
- managedDeviceId
- manufacturer
- model
- - orderIdentifier
- productKey
- purchaseOrderIdentifier
- resourceName
@@ -5020,6 +5244,7 @@ paths:
- id
- addressableUserName
- azureActiveDirectoryDeviceId
+ - azureAdDeviceId
- deploymentProfileAssignedDateTime
- deploymentProfileAssignmentDetailedStatus
- deploymentProfileAssignmentStatus
@@ -5030,7 +5255,6 @@ paths:
- managedDeviceId
- manufacturer
- model
- - orderIdentifier
- productKey
- purchaseOrderIdentifier
- resourceName
@@ -5545,6 +5769,8 @@ paths:
- id desc
- createdDateTime
- createdDateTime desc
+ - deployableContentDisplayName
+ - deployableContentDisplayName desc
- description
- description desc
- displayName
@@ -5568,6 +5794,7 @@ paths:
enum:
- id
- createdDateTime
+ - deployableContentDisplayName
- description
- displayName
- featureUpdateVersion
@@ -5661,6 +5888,7 @@ paths:
enum:
- id
- createdDateTime
+ - deployableContentDisplayName
- description
- displayName
- featureUpdateVersion
@@ -8533,6 +8761,7 @@ paths:
- resourceNamespaces
- roleAssignments
- roleDefinitions
+ - roleAssignmentApprovals
- roleAssignmentRequests
- roleAssignmentScheduleInstances
- roleAssignmentSchedules
@@ -8554,6 +8783,7 @@ paths:
- resourceNamespaces
- roleAssignments
- roleDefinitions
+ - roleAssignmentApprovals
- roleAssignmentRequests
- roleAssignmentScheduleInstances
- roleAssignmentSchedules
@@ -8575,6 +8805,8 @@ paths:
operationId: roleManagement.Directory.ListRoleAssignments
roleDefinitions:
operationId: roleManagement.Directory.ListRoleDefinitions
+ roleAssignmentApprovals:
+ operationId: roleManagement.Directory.ListRoleAssignmentApprovals
roleAssignmentRequests:
operationId: roleManagement.Directory.ListRoleAssignmentRequests
roleAssignmentScheduleInstances:
@@ -9341,12 +9573,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /roleManagement/directory/roleAssignmentRequests:
+ /roleManagement/directory/roleAssignmentApprovals:
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentRequests from roleManagement
- operationId: roleManagement.directory_ListRoleAssignmentRequests
+ summary: Get roleAssignmentApprovals from roleManagement
+ operationId: roleManagement.directory_ListRoleAssignmentApprovals
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
@@ -9365,38 +9597,6 @@ paths:
enum:
- id
- id desc
- - approvalId
- - approvalId desc
- - completedDateTime
- - completedDateTime desc
- - createdBy
- - createdBy desc
- - createdDateTime
- - createdDateTime desc
- - customData
- - customData desc
- - status
- - status desc
- - action
- - action desc
- - appScopeId
- - appScopeId desc
- - directoryScopeId
- - directoryScopeId desc
- - isValidationOnly
- - isValidationOnly desc
- - justification
- - justification desc
- - principalId
- - principalId desc
- - roleDefinitionId
- - roleDefinitionId desc
- - scheduleInfo
- - scheduleInfo desc
- - targetScheduleId
- - targetScheduleId desc
- - ticketInfo
- - ticketInfo desc
type: string
- name: $select
in: query
@@ -9409,28 +9609,7 @@ paths:
items:
enum:
- id
- - approvalId
- - completedDateTime
- - createdBy
- - createdDateTime
- - customData
- - status
- - action
- - appScopeId
- - directoryScopeId
- - isValidationOnly
- - justification
- - principalId
- - roleDefinitionId
- - scheduleInfo
- - targetScheduleId
- - ticketInfo
- - activatedUsing
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - steps
type: string
- name: $expand
in: query
@@ -9443,12 +9622,7 @@ paths:
items:
enum:
- '*'
- - activatedUsing
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - steps
type: string
responses:
'200':
@@ -9456,13 +9630,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleAssignmentRequest
+ title: Collection of approval
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ $ref: '#/components/schemas/microsoft.graph.approval'
'@odata.nextLink':
type: string
additionalProperties:
@@ -9476,14 +9650,14 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleAssignmentRequests for roleManagement
- operationId: roleManagement.directory_CreateRoleAssignmentRequests
+ summary: Create new navigation property to roleAssignmentApprovals for roleManagement
+ operationId: roleManagement.directory_CreateRoleAssignmentApprovals
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ $ref: '#/components/schemas/microsoft.graph.approval'
required: true
responses:
'201':
@@ -9491,24 +9665,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ $ref: '#/components/schemas/microsoft.graph.approval'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}':
+ '/roleManagement/directory/roleAssignmentApprovals/{approval-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentRequests from roleManagement
- operationId: roleManagement.directory_GetRoleAssignmentRequests
+ summary: Get roleAssignmentApprovals from roleManagement
+ operationId: roleManagement.directory_GetRoleAssignmentApprovals
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
- name: $select
in: query
description: Select properties to be returned
@@ -9520,28 +9694,7 @@ paths:
items:
enum:
- id
- - approvalId
- - completedDateTime
- - createdBy
- - createdDateTime
- - customData
- - status
- - action
- - appScopeId
- - directoryScopeId
- - isValidationOnly
- - justification
- - principalId
- - roleDefinitionId
- - scheduleInfo
- - targetScheduleId
- - ticketInfo
- - activatedUsing
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - steps
type: string
- name: $expand
in: query
@@ -9554,12 +9707,7 @@ paths:
items:
enum:
- '*'
- - activatedUsing
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - steps
type: string
responses:
'200':
@@ -9567,54 +9715,34 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ $ref: '#/components/schemas/microsoft.graph.approval'
links:
- activatedUsing:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetActivatedUsing
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- appScope:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetAppScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- directoryScope:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- principal:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetPrincipal
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- roleDefinition:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- targetSchedule:
- operationId: roleManagement.directory.RoleAssignmentRequests.GetTargetSchedule
+ steps:
+ operationId: roleManagement.directory.RoleAssignmentApprovals.ListSteps
parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ approval-id: $request.path.approval-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleAssignmentRequests in roleManagement
- operationId: roleManagement.directory_UpdateRoleAssignmentRequests
+ summary: Update the navigation property roleAssignmentApprovals in roleManagement
+ operationId: roleManagement.directory_UpdateRoleAssignmentApprovals
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ $ref: '#/components/schemas/microsoft.graph.approval'
required: true
responses:
'204':
@@ -9625,16 +9753,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleAssignmentRequests for roleManagement
- operationId: roleManagement.directory_DeleteRoleAssignmentRequests
+ summary: Delete navigation property roleAssignmentApprovals for roleManagement
+ operationId: roleManagement.directory_DeleteRoleAssignmentApprovals
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
- name: If-Match
in: header
description: ETag
@@ -9646,20 +9774,52 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing':
+ '/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps':
get:
tags:
- roleManagement.rbacApplication
- summary: Get activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetActivatedUsing
+ summary: Get steps from roleManagement
+ operationId: roleManagement.directory.roleAssignmentApprovals_ListSteps
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
+ - $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:
+ enum:
+ - id
+ - id desc
+ - assignedToMe
+ - assignedToMe desc
+ - displayName
+ - displayName desc
+ - justification
+ - justification desc
+ - reviewedBy
+ - reviewedBy desc
+ - reviewedDateTime
+ - reviewedDateTime desc
+ - reviewResult
+ - reviewResult desc
+ - status
+ - status desc
+ type: string
- name: $select
in: query
description: Select properties to be returned
@@ -9671,20 +9831,13 @@ paths:
items:
enum:
- id
- - appScopeId
- - createdDateTime
- - createdUsing
- - directoryScopeId
- - modifiedDateTime
- - principalId
- - roleDefinitionId
+ - assignedToMe
+ - displayName
+ - justification
+ - reviewedBy
+ - reviewedDateTime
+ - reviewResult
- status
- - memberType
- - scheduleInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
type: string
- name: $expand
in: query
@@ -9697,10 +9850,6 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
type: string
responses:
'200':
@@ -9708,134 +9857,74 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetAppScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- principal:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetPrincipal
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref':
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get ref of activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefActivatedUsing
- parameters:
- - name: unifiedRoleAssignmentRequest-id
- in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
- responses:
- '200':
- description: Retrieved navigation property link
- content:
- application/json:
- schema:
- type: string
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetAppScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- principal:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetPrincipal
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ title: Collection of approvalStep
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
default:
$ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
x-ms-docs-operation-type: operation
- put:
+ post:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property activatedUsing in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefActivatedUsing
+ summary: Create new navigation property to steps for roleManagement
+ operationId: roleManagement.directory.roleAssignmentApprovals_CreateSteps
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
requestBody:
- description: New navigation property ref values
+ description: New navigation property
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
required: true
responses:
- '204':
- description: Success
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- delete:
+ '/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}':
+ get:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property activatedUsing for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefActivatedUsing
+ summary: Get steps from roleManagement
+ operationId: roleManagement.directory.roleAssignmentApprovals_GetSteps
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
- - name: If-Match
- in: header
- description: ETag
- schema:
- type: string
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope':
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get appScope from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetAppScope
- parameters:
- - name: unifiedRoleAssignmentRequest-id
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approvalStep'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approvalStep
- name: $select
in: query
description: Select properties to be returned
@@ -9847,8 +9936,13 @@ paths:
items:
enum:
- id
+ - assignedToMe
- displayName
- - type
+ - justification
+ - reviewedBy
+ - reviewedDateTime
+ - reviewResult
+ - status
type: string
- name: $expand
in: query
@@ -9868,55 +9962,36 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.appScope'
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref':
- get:
+ patch:
tags:
- roleManagement.rbacApplication
- summary: Get ref of appScope from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefAppScope
+ summary: Update the navigation property steps in roleManagement
+ operationId: roleManagement.directory.roleAssignmentApprovals_UpdateSteps
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
- responses:
- '200':
- description: Retrieved navigation property link
- content:
- application/json:
- schema:
- type: string
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- put:
- tags:
- - roleManagement.rbacApplication
- summary: Update the ref of navigation property appScope in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefAppScope
- parameters:
- - name: unifiedRoleAssignmentRequest-id
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approvalStep'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approvalStep
requestBody:
- description: New navigation property ref values
+ description: New navigation property values
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
required: true
responses:
'204':
@@ -9927,16 +10002,23 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property appScope for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefAppScope
+ summary: Delete navigation property steps for roleManagement
+ operationId: roleManagement.directory.roleAssignmentApprovals_DeleteSteps
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
+ in: path
+ description: 'key: id of approvalStep'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: approvalStep
- name: If-Match
in: header
description: ETag
@@ -9948,20 +10030,88 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope':
+ '/roleManagement/directory/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- - roleManagement.rbacApplication
- summary: Get directoryScope from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetDirectoryScope
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.directory.roleAssignmentApprovals_filterByCurrentUser
parameters:
- - name: unifiedRoleAssignmentRequest-id
+ - name: on
in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
+ description: 'Usage: on={on}'
required: true
schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ $ref: '#/components/schemas/microsoft.graph.approvalFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approval'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/directory/roleAssignmentRequests:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleAssignmentRequests from roleManagement
+ operationId: roleManagement.directory_ListRoleAssignmentRequests
+ 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:
+ enum:
+ - id
+ - id desc
+ - approvalId
+ - approvalId desc
+ - completedDateTime
+ - completedDateTime desc
+ - createdBy
+ - createdBy desc
+ - createdDateTime
+ - createdDateTime desc
+ - customData
+ - customData desc
+ - status
+ - status desc
+ - action
+ - action desc
+ - appScopeId
+ - appScopeId desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - isValidationOnly
+ - isValidationOnly desc
+ - justification
+ - justification desc
+ - principalId
+ - principalId desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ - scheduleInfo
+ - scheduleInfo desc
+ - targetScheduleId
+ - targetScheduleId desc
+ - ticketInfo
+ - ticketInfo desc
+ type: string
- name: $select
in: query
description: Select properties to be returned
@@ -9973,7 +10123,28 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - approvalId
+ - completedDateTime
+ - createdBy
+ - createdDateTime
+ - customData
+ - status
+ - action
+ - appScopeId
+ - directoryScopeId
+ - isValidationOnly
+ - justification
+ - principalId
+ - roleDefinitionId
+ - scheduleInfo
+ - targetScheduleId
+ - ticketInfo
+ - activatedUsing
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
type: string
- name: $expand
in: query
@@ -9986,6 +10157,12 @@ paths:
items:
enum:
- '*'
+ - activatedUsing
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
type: string
responses:
'200':
@@ -9993,16 +10170,51 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ title: Collection of unifiedRoleAssignmentRequest
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
default:
$ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref':
+ post:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Create new navigation property to roleAssignmentRequests for roleManagement
+ operationId: roleManagement.directory_CreateRoleAssignmentRequests
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of directoryScope from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefDirectoryScope
+ summary: Get roleAssignmentRequests from roleManagement
+ operationId: roleManagement.directory_GetRoleAssignmentRequests
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10011,21 +10223,98 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - approvalId
+ - completedDateTime
+ - createdBy
+ - createdDateTime
+ - customData
+ - status
+ - action
+ - appScopeId
+ - directoryScopeId
+ - isValidationOnly
+ - justification
+ - principalId
+ - roleDefinitionId
+ - scheduleInfo
+ - targetScheduleId
+ - ticketInfo
+ - activatedUsing
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - activatedUsing
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
+ type: string
responses:
'200':
- description: Retrieved navigation property link
+ description: Retrieved navigation property
content:
application/json:
schema:
- type: string
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ links:
+ activatedUsing:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetActivatedUsing
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ appScope:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetAppScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ principal:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ targetSchedule:
+ operationId: roleManagement.directory.RoleAssignmentRequests.GetTargetSchedule
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- put:
+ patch:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property directoryScope in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefDirectoryScope
+ summary: Update the navigation property roleAssignmentRequests in roleManagement
+ operationId: roleManagement.directory_UpdateRoleAssignmentRequests
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10035,13 +10324,11 @@ paths:
type: string
x-ms-docs-key-type: unifiedRoleAssignmentRequest
requestBody:
- description: New navigation property ref values
+ description: New navigation property values
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
required: true
responses:
'204':
@@ -10052,8 +10339,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property directoryScope for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefDirectoryScope
+ summary: Delete navigation property roleAssignmentRequests for roleManagement
+ operationId: roleManagement.directory_DeleteRoleAssignmentRequests
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10073,32 +10360,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel':
- post:
- tags:
- - roleManagement.Actions
- summary: Invoke action cancel
- operationId: roleManagement.directory.roleAssignmentRequests_cancel
- parameters:
- - name: unifiedRoleAssignmentRequest-id
- in: path
- description: 'key: id of unifiedRoleAssignmentRequest'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignmentRequest
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: action
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing':
get:
tags:
- roleManagement.rbacApplication
- summary: Get principal from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetPrincipal
+ summary: Get activatedUsing from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetActivatedUsing
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10118,7 +10385,20 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
type: string
- name: $expand
in: query
@@ -10131,6 +10411,10 @@ paths:
items:
enum:
- '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
type: string
responses:
'200':
@@ -10138,16 +10422,33 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetAppScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of principal from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefPrincipal
+ summary: Get ref of activatedUsing from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefActivatedUsing
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10163,14 +10464,31 @@ paths:
application/json:
schema:
type: string
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetAppScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentRequests.ActivatedUsing.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property principal in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefPrincipal
+ summary: Update the ref of navigation property activatedUsing in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefActivatedUsing
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10197,8 +10515,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property principal for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefPrincipal
+ summary: Delete ref of navigation property activatedUsing for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefActivatedUsing
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10218,12 +10536,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleDefinition from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRoleDefinition
+ summary: Get appScope from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetAppScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10243,15 +10561,8 @@ paths:
items:
enum:
- id
- - description
- displayName
- - isBuiltIn
- - isEnabled
- - resourceScopes
- - rolePermissions
- - templateId
- - version
- - inheritsPermissionsFrom
+ - type
type: string
- name: $expand
in: query
@@ -10264,7 +10575,6 @@ paths:
items:
enum:
- '*'
- - inheritsPermissionsFrom
type: string
responses:
'200':
@@ -10272,21 +10582,16 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
- links:
- inheritsPermissionsFrom:
- operationId: roleManagement.directory.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ $ref: '#/components/schemas/microsoft.graph.appScope'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of roleDefinition from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefRoleDefinition
+ summary: Get ref of appScope from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefAppScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10302,19 +10607,14 @@ paths:
application/json:
schema:
type: string
- links:
- inheritsPermissionsFrom:
- operationId: roleManagement.directory.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property roleDefinition in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefRoleDefinition
+ summary: Update the ref of navigation property appScope in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefAppScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10341,8 +10641,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property roleDefinition for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefRoleDefinition
+ summary: Delete ref of navigation property appScope for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefAppScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10362,12 +10662,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope':
get:
tags:
- roleManagement.rbacApplication
- summary: Get targetSchedule from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetTargetSchedule
+ summary: Get directoryScope from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetDirectoryScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10387,22 +10687,7 @@ paths:
items:
enum:
- id
- - appScopeId
- - createdDateTime
- - createdUsing
- - directoryScopeId
- - modifiedDateTime
- - principalId
- - roleDefinitionId
- - status
- - assignmentType
- - memberType
- - scheduleInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -10415,11 +10700,6 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
type: string
responses:
'200':
@@ -10427,37 +10707,16 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- principal:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- activatedUsing:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of targetSchedule from roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_GetRefTargetSchedule
+ summary: Get ref of directoryScope from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefDirectoryScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10473,35 +10732,14 @@ paths:
application/json:
schema:
type: string
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- principal:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
- activatedUsing:
- operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing
- parameters:
- unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property targetSchedule in roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_SetRefTargetSchedule
+ summary: Update the ref of navigation property directoryScope in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefDirectoryScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10528,8 +10766,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property targetSchedule for roleManagement
- operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefTargetSchedule
+ summary: Delete ref of navigation property directoryScope for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefDirectoryScope
parameters:
- name: unifiedRoleAssignmentRequest-id
in: path
@@ -10549,68 +10787,40 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
- get:
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel':
+ post:
tags:
- - roleManagement.Functions
- summary: Invoke function filterByCurrentUser
- operationId: roleManagement.directory.roleAssignmentRequests_filterByCurrentUser
+ - roleManagement.Actions
+ summary: Invoke action cancel
+ operationId: roleManagement.directory.roleAssignmentRequests_cancel
parameters:
- - name: on
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'Usage: on={on}'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
- $ref: '#/components/schemas/microsoft.graph.roleAssignmentRequestFilterByCurrentUserOptions'
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- /roleManagement/directory/roleAssignments:
+ x-ms-docs-operation-type: action
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignments from roleManagement
- operationId: roleManagement.directory_ListRoleAssignments
+ summary: Get principal from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetPrincipal
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
+ - name: unifiedRoleAssignmentRequest-id
+ in: path
+ description: 'key: id of unifiedRoleAssignmentRequest'
+ required: true
schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - id desc
- - appScopeId
- - appScopeId desc
- - condition
- - condition desc
- - directoryScopeId
- - directoryScopeId desc
- - principalId
- - principalId desc
- - resourceScope
- - resourceScope desc
- - roleDefinitionId
- - roleDefinitionId desc
- type: string
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: $select
in: query
description: Select properties to be returned
@@ -10622,16 +10832,7 @@ paths:
items:
enum:
- id
- - appScopeId
- - condition
- - directoryScopeId
- - principalId
- - resourceScope
- - roleDefinitionId
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -10644,10 +10845,6 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
type: string
responses:
'200':
@@ -10655,143 +10852,55 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleAssignment
- type: object
- properties:
- value:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
- '@odata.nextLink':
- type: string
- additionalProperties:
- type: object
- default:
- $ref: '#/components/responses/error'
- x-ms-pageable:
- nextLinkName: '@odata.nextLink'
- operationName: listMore
- x-ms-docs-operation-type: operation
- post:
- tags:
- - roleManagement.rbacApplication
- summary: Create new navigation property to roleAssignments for roleManagement
- operationId: roleManagement.directory_CreateRoleAssignments
- requestBody:
- description: New navigation property
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
- required: true
- responses:
- '201':
- description: Created navigation property.
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignments from roleManagement
- operationId: roleManagement.directory_GetRoleAssignments
+ summary: Get ref of principal from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefPrincipal
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
- - name: $select
- in: query
- description: Select properties to be returned
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - appScopeId
- - condition
- - directoryScopeId
- - principalId
- - resourceScope
- - roleDefinitionId
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- type: string
- - name: $expand
- in: query
- description: Expand related entities
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
responses:
'200':
- description: Retrieved navigation property
+ description: Retrieved navigation property link
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
- links:
- appScope:
- operationId: roleManagement.directory.RoleAssignments.GetAppScope
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
- directoryScope:
- operationId: roleManagement.directory.RoleAssignments.GetDirectoryScope
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
- principal:
- operationId: roleManagement.directory.RoleAssignments.GetPrincipal
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
- roleDefinition:
- operationId: roleManagement.directory.RoleAssignments.GetRoleDefinition
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ type: string
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- patch:
+ put:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleAssignments in roleManagement
- operationId: roleManagement.directory_UpdateRoleAssignments
+ summary: Update the ref of navigation property principal in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefPrincipal
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
requestBody:
- description: New navigation property values
+ description: New navigation property ref values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
+ type: object
+ additionalProperties:
+ type: object
required: true
responses:
'204':
@@ -10802,16 +10911,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleAssignments for roleManagement
- operationId: roleManagement.directory_DeleteRoleAssignments
+ summary: Delete ref of navigation property principal for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefPrincipal
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: If-Match
in: header
description: ETag
@@ -10823,20 +10932,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition':
get:
tags:
- roleManagement.rbacApplication
- summary: Get appScope from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetAppScope
+ summary: Get roleDefinition from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRoleDefinition
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: $select
in: query
description: Select properties to be returned
@@ -10848,8 +10957,15 @@ paths:
items:
enum:
- id
+ - description
- displayName
- - type
+ - isBuiltIn
+ - isEnabled
+ - resourceScopes
+ - rolePermissions
+ - templateId
+ - version
+ - inheritsPermissionsFrom
type: string
- name: $expand
in: query
@@ -10862,6 +10978,7 @@ paths:
items:
enum:
- '*'
+ - inheritsPermissionsFrom
type: string
responses:
'200':
@@ -10869,49 +10986,85 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.appScope'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ links:
+ inheritsPermissionsFrom:
+ operationId: roleManagement.directory.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- patch:
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref':
+ get:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property appScope in roleManagement
- operationId: roleManagement.directory.roleAssignments_UpdateAppScope
+ summary: Get ref of roleDefinition from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefRoleDefinition
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
- requestBody:
- description: New navigation property values
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.appScope'
- required: true
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
responses:
- '204':
- description: Success
+ '200':
+ description: Retrieved navigation property link
+ content:
+ application/json:
+ schema:
+ type: string
+ links:
+ inheritsPermissionsFrom:
+ operationId: roleManagement.directory.roleAssignmentRequests.RoleDefinition.ListInheritsPermissionsFrom
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- delete:
+ put:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property appScope for roleManagement
- operationId: roleManagement.directory.roleAssignments_DeleteAppScope
- parameters:
- - name: unifiedRoleAssignment-id
+ summary: Update the ref of navigation property roleDefinition in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefRoleDefinition
+ parameters:
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
+ requestBody:
+ description: New navigation property ref values
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete ref of navigation property roleDefinition for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefRoleDefinition
+ parameters:
+ - name: unifiedRoleAssignmentRequest-id
+ in: path
+ description: 'key: id of unifiedRoleAssignmentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: If-Match
in: header
description: ETag
@@ -10923,20 +11076,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule':
get:
tags:
- roleManagement.rbacApplication
- summary: Get directoryScope from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetDirectoryScope
+ summary: Get targetSchedule from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetTargetSchedule
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: $select
in: query
description: Select properties to be returned
@@ -10948,7 +11101,22 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - assignmentType
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
- name: $expand
in: query
@@ -10961,6 +11129,11 @@ paths:
items:
enum:
- '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
responses:
'200':
@@ -10968,24 +11141,45 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ activatedUsing:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref':
+ '/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of directoryScope from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetRefDirectoryScope
+ summary: Get ref of targetSchedule from roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_GetRefTargetSchedule
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
responses:
'200':
description: Retrieved navigation property link
@@ -10993,22 +11187,43 @@ paths:
application/json:
schema:
type: string
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetAppScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
+ activatedUsing:
+ operationId: roleManagement.directory.roleAssignmentRequests.TargetSchedule.GetActivatedUsing
+ parameters:
+ unifiedRoleAssignmentRequest-id: $request.path.unifiedRoleAssignmentRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property directoryScope in roleManagement
- operationId: roleManagement.directory.roleAssignments_SetRefDirectoryScope
+ summary: Update the ref of navigation property targetSchedule in roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_SetRefTargetSchedule
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
requestBody:
description: New navigation property ref values
content:
@@ -11027,16 +11242,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property directoryScope for roleManagement
- operationId: roleManagement.directory.roleAssignments_DeleteRefDirectoryScope
+ summary: Delete ref of navigation property targetSchedule for roleManagement
+ operationId: roleManagement.directory.roleAssignmentRequests_DeleteRefTargetSchedule
parameters:
- - name: unifiedRoleAssignment-id
+ - name: unifiedRoleAssignmentRequest-id
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'key: id of unifiedRoleAssignmentRequest'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ x-ms-docs-key-type: unifiedRoleAssignmentRequest
- name: If-Match
in: header
description: ETag
@@ -11048,20 +11263,68 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal':
+ '/roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- - roleManagement.rbacApplication
- summary: Get principal from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetPrincipal
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.directory.roleAssignmentRequests_filterByCurrentUser
parameters:
- - name: unifiedRoleAssignment-id
+ - name: on
in: path
- description: 'key: id of unifiedRoleAssignment'
+ description: 'Usage: on={on}'
required: true
schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignment
+ $ref: '#/components/schemas/microsoft.graph.roleAssignmentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/directory/roleAssignments:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleAssignments from roleManagement
+ operationId: roleManagement.directory_ListRoleAssignments
+ 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:
+ enum:
+ - id
+ - id desc
+ - appScopeId
+ - appScopeId desc
+ - condition
+ - condition desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - principalId
+ - principalId desc
+ - resourceScope
+ - resourceScope desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ type: string
- name: $select
in: query
description: Select properties to be returned
@@ -11073,7 +11336,16 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - appScopeId
+ - condition
+ - directoryScopeId
+ - principalId
+ - resourceScope
+ - roleDefinitionId
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
type: string
- name: $expand
in: query
@@ -11086,6 +11358,10 @@ paths:
items:
enum:
- '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
type: string
responses:
'200':
@@ -11093,39 +11369,129 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ title: Collection of unifiedRoleAssignment
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
default:
$ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref':
- get:
+ post:
tags:
- roleManagement.rbacApplication
- summary: Get ref of principal from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetRefPrincipal
- parameters:
- - name: unifiedRoleAssignment-id
- in: path
- description: 'key: id of unifiedRoleAssignment'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignment
- responses:
- '200':
- description: Retrieved navigation property link
+ summary: Create new navigation property to roleAssignments for roleManagement
+ operationId: roleManagement.directory_CreateRoleAssignments
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
content:
application/json:
schema:
- type: string
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- put:
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}':
+ get:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property principal in roleManagement
- operationId: roleManagement.directory.roleAssignments_SetRefPrincipal
+ summary: Get roleAssignments from roleManagement
+ operationId: roleManagement.directory_GetRoleAssignments
+ parameters:
+ - name: unifiedRoleAssignment-id
+ in: path
+ description: 'key: id of unifiedRoleAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - condition
+ - directoryScopeId
+ - principalId
+ - resourceScope
+ - roleDefinitionId
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
+ links:
+ appScope:
+ operationId: roleManagement.directory.RoleAssignments.GetAppScope
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleAssignments.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ principal:
+ operationId: roleManagement.directory.RoleAssignments.GetPrincipal
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleAssignments.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the navigation property roleAssignments in roleManagement
+ operationId: roleManagement.directory_UpdateRoleAssignments
parameters:
- name: unifiedRoleAssignment-id
in: path
@@ -11135,13 +11501,11 @@ paths:
type: string
x-ms-docs-key-type: unifiedRoleAssignment
requestBody:
- description: New navigation property ref values
+ description: New navigation property values
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment'
required: true
responses:
'204':
@@ -11152,8 +11516,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property principal for roleManagement
- operationId: roleManagement.directory.roleAssignments_DeleteRefPrincipal
+ summary: Delete navigation property roleAssignments for roleManagement
+ operationId: roleManagement.directory_DeleteRoleAssignments
parameters:
- name: unifiedRoleAssignment-id
in: path
@@ -11173,12 +11537,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition':
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleDefinition from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetRoleDefinition
+ summary: Get appScope from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetAppScope
parameters:
- name: unifiedRoleAssignment-id
in: path
@@ -11198,15 +11562,8 @@ paths:
items:
enum:
- id
- - description
- displayName
- - isBuiltIn
- - isEnabled
- - resourceScopes
- - rolePermissions
- - templateId
- - version
- - inheritsPermissionsFrom
+ - type
type: string
- name: $expand
in: query
@@ -11219,7 +11576,6 @@ paths:
items:
enum:
- '*'
- - inheritsPermissionsFrom
type: string
responses:
'200':
@@ -11227,49 +11583,15 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
- links:
- inheritsPermissionsFrom:
- operationId: roleManagement.directory.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref':
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get ref of roleDefinition from roleManagement
- operationId: roleManagement.directory.roleAssignments_GetRefRoleDefinition
- parameters:
- - name: unifiedRoleAssignment-id
- in: path
- description: 'key: id of unifiedRoleAssignment'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleAssignment
- responses:
- '200':
- description: Retrieved navigation property link
- content:
- application/json:
- schema:
- type: string
- links:
- inheritsPermissionsFrom:
- operationId: roleManagement.directory.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom
- parameters:
- unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ $ref: '#/components/schemas/microsoft.graph.appScope'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- put:
+ patch:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property roleDefinition in roleManagement
- operationId: roleManagement.directory.roleAssignments_SetRefRoleDefinition
+ summary: Update the navigation property appScope in roleManagement
+ operationId: roleManagement.directory.roleAssignments_UpdateAppScope
parameters:
- name: unifiedRoleAssignment-id
in: path
@@ -11279,13 +11601,11 @@ paths:
type: string
x-ms-docs-key-type: unifiedRoleAssignment
requestBody:
- description: New navigation property ref values
+ description: New navigation property values
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.appScope'
required: true
responses:
'204':
@@ -11296,8 +11616,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property roleDefinition for roleManagement
- operationId: roleManagement.directory.roleAssignments_DeleteRefRoleDefinition
+ summary: Delete navigation property appScope for roleManagement
+ operationId: roleManagement.directory.roleAssignments_DeleteAppScope
parameters:
- name: unifiedRoleAssignment-id
in: path
@@ -11317,51 +11637,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /roleManagement/directory/roleAssignmentScheduleInstances:
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentScheduleInstances from roleManagement
- operationId: roleManagement.directory_ListRoleAssignmentScheduleInstances
+ summary: Get directoryScope from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetDirectoryScope
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
+ - name: unifiedRoleAssignment-id
+ in: path
+ description: 'key: id of unifiedRoleAssignment'
+ required: true
schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - id desc
- - appScopeId
- - appScopeId desc
- - directoryScopeId
- - directoryScopeId desc
- - principalId
- - principalId desc
- - roleDefinitionId
- - roleDefinitionId desc
- - assignmentType
- - assignmentType desc
- - endDateTime
- - endDateTime desc
- - memberType
- - memberType desc
- - roleAssignmentOriginId
- - roleAssignmentOriginId desc
- - roleAssignmentScheduleId
- - roleAssignmentScheduleId desc
- - startDateTime
- - startDateTime desc
- type: string
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
- name: $select
in: query
description: Select properties to be returned
@@ -11373,21 +11662,7 @@ paths:
items:
enum:
- id
- - appScopeId
- - directoryScopeId
- - principalId
- - roleDefinitionId
- - assignmentType
- - endDateTime
- - memberType
- - roleAssignmentOriginId
- - roleAssignmentScheduleId
- - startDateTime
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -11400,11 +11675,6 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
type: string
responses:
'200':
@@ -11412,153 +11682,55 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleAssignmentScheduleInstance
- type: object
- properties:
- value:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
- '@odata.nextLink':
- type: string
- additionalProperties:
- type: object
- default:
- $ref: '#/components/responses/error'
- x-ms-pageable:
- nextLinkName: '@odata.nextLink'
- operationName: listMore
- x-ms-docs-operation-type: operation
- post:
- tags:
- - roleManagement.rbacApplication
- summary: Create new navigation property to roleAssignmentScheduleInstances for roleManagement
- operationId: roleManagement.directory_CreateRoleAssignmentScheduleInstances
- requestBody:
- description: New navigation property
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
- required: true
- responses:
- '201':
- description: Created navigation property.
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}':
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentScheduleInstances from roleManagement
- operationId: roleManagement.directory_GetRoleAssignmentScheduleInstances
+ summary: Get ref of directoryScope from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetRefDirectoryScope
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
- - name: $select
- in: query
- description: Select properties to be returned
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - appScopeId
- - directoryScopeId
- - principalId
- - roleDefinitionId
- - assignmentType
- - endDateTime
- - memberType
- - roleAssignmentOriginId
- - roleAssignmentScheduleId
- - startDateTime
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
- type: string
- - name: $expand
- in: query
- description: Expand related entities
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - activatedUsing
- type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
responses:
'200':
- description: Retrieved navigation property
+ description: Retrieved navigation property link
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
- links:
- appScope:
- operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetAppScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- directoryScope:
- operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- principal:
- operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetPrincipal
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- roleDefinition:
- operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- activatedUsing:
- operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetActivatedUsing
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
+ type: string
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- patch:
+ put:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleAssignmentScheduleInstances in roleManagement
- operationId: roleManagement.directory_UpdateRoleAssignmentScheduleInstances
+ summary: Update the ref of navigation property directoryScope in roleManagement
+ operationId: roleManagement.directory.roleAssignments_SetRefDirectoryScope
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
requestBody:
- description: New navigation property values
+ description: New navigation property ref values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
+ type: object
+ additionalProperties:
+ type: object
required: true
responses:
'204':
@@ -11569,16 +11741,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement
- operationId: roleManagement.directory_DeleteRoleAssignmentScheduleInstances
+ summary: Delete ref of navigation property directoryScope for roleManagement
+ operationId: roleManagement.directory.roleAssignments_DeleteRefDirectoryScope
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
- name: If-Match
in: header
description: ETag
@@ -11590,20 +11762,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing':
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal':
get:
tags:
- roleManagement.rbacApplication
- summary: Get activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetActivatedUsing
+ summary: Get principal from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetPrincipal
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
- name: $select
in: query
description: Select properties to be returned
@@ -11615,18 +11787,7 @@ paths:
items:
enum:
- id
- - appScopeId
- - directoryScopeId
- - principalId
- - roleDefinitionId
- - endDateTime
- - memberType
- - roleEligibilityScheduleId
- - startDateTime
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -11639,10 +11800,6 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
type: string
responses:
'200':
@@ -11650,41 +11807,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- principal:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref':
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetRefActivatedUsing
+ summary: Get ref of principal from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetRefPrincipal
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
responses:
'200':
description: Retrieved navigation property link
@@ -11692,39 +11832,22 @@ paths:
application/json:
schema:
type: string
- links:
- appScope:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- directoryScope:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- principal:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
- roleDefinition:
- operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition
- parameters:
- unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property activatedUsing in roleManagement
- operationId: roleManagement.directory.roleAssignmentScheduleInstances_SetRefActivatedUsing
+ summary: Update the ref of navigation property principal in roleManagement
+ operationId: roleManagement.directory.roleAssignments_SetRefPrincipal
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
requestBody:
description: New navigation property ref values
content:
@@ -11743,16 +11866,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property activatedUsing for roleManagement
- operationId: roleManagement.directory.roleAssignmentScheduleInstances_DeleteRefActivatedUsing
+ summary: Delete ref of navigation property principal for roleManagement
+ operationId: roleManagement.directory.roleAssignments_DeleteRefPrincipal
parameters:
- - name: unifiedRoleAssignmentScheduleInstance-id
+ - name: unifiedRoleAssignment-id
in: path
- description: 'key: id of unifiedRoleAssignmentScheduleInstance'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
+ x-ms-docs-key-type: unifiedRoleAssignment
- name: If-Match
in: header
description: ETag
@@ -11764,37 +11887,156 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})':
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition':
get:
tags:
- - roleManagement.Functions
- summary: Invoke function filterByCurrentUser
- operationId: roleManagement.directory.roleAssignmentScheduleInstances_filterByCurrentUser
+ - roleManagement.rbacApplication
+ summary: Get roleDefinition from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetRoleDefinition
parameters:
- - name: on
+ - name: unifiedRoleAssignment-id
in: path
- description: 'Usage: on={on}'
+ description: 'key: id of unifiedRoleAssignment'
required: true
schema:
- $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions'
- responses:
- '200':
- description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - description
+ - displayName
+ - isBuiltIn
+ - isEnabled
+ - resourceScopes
+ - rolePermissions
+ - templateId
+ - version
+ - inheritsPermissionsFrom
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - inheritsPermissionsFrom
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ links:
+ inheritsPermissionsFrom:
+ operationId: roleManagement.directory.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- /roleManagement/directory/roleAssignmentSchedules:
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentSchedules from roleManagement
- operationId: roleManagement.directory_ListRoleAssignmentSchedules
+ summary: Get ref of roleDefinition from roleManagement
+ operationId: roleManagement.directory.roleAssignments_GetRefRoleDefinition
+ parameters:
+ - name: unifiedRoleAssignment-id
+ in: path
+ description: 'key: id of unifiedRoleAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
+ responses:
+ '200':
+ description: Retrieved navigation property link
+ content:
+ application/json:
+ schema:
+ type: string
+ links:
+ inheritsPermissionsFrom:
+ operationId: roleManagement.directory.roleAssignments.RoleDefinition.ListInheritsPermissionsFrom
+ parameters:
+ unifiedRoleAssignment-id: $request.path.unifiedRoleAssignment-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the ref of navigation property roleDefinition in roleManagement
+ operationId: roleManagement.directory.roleAssignments_SetRefRoleDefinition
+ parameters:
+ - name: unifiedRoleAssignment-id
+ in: path
+ description: 'key: id of unifiedRoleAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
+ requestBody:
+ description: New navigation property ref values
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete ref of navigation property roleDefinition for roleManagement
+ operationId: roleManagement.directory.roleAssignments_DeleteRefRoleDefinition
+ parameters:
+ - name: unifiedRoleAssignment-id
+ in: path
+ description: 'key: id of unifiedRoleAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignment
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /roleManagement/directory/roleAssignmentScheduleInstances:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleAssignmentScheduleInstances from roleManagement
+ operationId: roleManagement.directory_ListRoleAssignmentScheduleInstances
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
@@ -11815,26 +12057,24 @@ paths:
- id desc
- appScopeId
- appScopeId desc
- - createdDateTime
- - createdDateTime desc
- - createdUsing
- - createdUsing desc
- directoryScopeId
- directoryScopeId desc
- - modifiedDateTime
- - modifiedDateTime desc
- principalId
- principalId desc
- roleDefinitionId
- roleDefinitionId desc
- - status
- - status desc
- assignmentType
- assignmentType desc
+ - endDateTime
+ - endDateTime desc
- memberType
- memberType desc
- - scheduleInfo
- - scheduleInfo desc
+ - roleAssignmentOriginId
+ - roleAssignmentOriginId desc
+ - roleAssignmentScheduleId
+ - roleAssignmentScheduleId desc
+ - startDateTime
+ - startDateTime desc
type: string
- name: $select
in: query
@@ -11848,16 +12088,15 @@ paths:
enum:
- id
- appScopeId
- - createdDateTime
- - createdUsing
- directoryScopeId
- - modifiedDateTime
- principalId
- roleDefinitionId
- - status
- assignmentType
+ - endDateTime
- memberType
- - scheduleInfo
+ - roleAssignmentOriginId
+ - roleAssignmentScheduleId
+ - startDateTime
- appScope
- directoryScope
- principal
@@ -11887,13 +12126,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleAssignmentSchedule
+ title: Collection of unifiedRoleAssignmentScheduleInstance
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
'@odata.nextLink':
type: string
additionalProperties:
@@ -11907,14 +12146,14 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleAssignmentSchedules for roleManagement
- operationId: roleManagement.directory_CreateRoleAssignmentSchedules
+ summary: Create new navigation property to roleAssignmentScheduleInstances for roleManagement
+ operationId: roleManagement.directory_CreateRoleAssignmentScheduleInstances
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
required: true
responses:
'201':
@@ -11922,24 +12161,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}':
+ '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleAssignmentSchedules from roleManagement
- operationId: roleManagement.directory_GetRoleAssignmentSchedules
+ summary: Get roleAssignmentScheduleInstances from roleManagement
+ operationId: roleManagement.directory_GetRoleAssignmentScheduleInstances
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
- name: $select
in: query
description: Select properties to be returned
@@ -11952,16 +12191,15 @@ paths:
enum:
- id
- appScopeId
- - createdDateTime
- - createdUsing
- directoryScopeId
- - modifiedDateTime
- principalId
- roleDefinitionId
- - status
- assignmentType
+ - endDateTime
- memberType
- - scheduleInfo
+ - roleAssignmentOriginId
+ - roleAssignmentScheduleId
+ - startDateTime
- appScope
- directoryScope
- principal
@@ -11991,50 +12229,50 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
links:
appScope:
- operationId: roleManagement.directory.RoleAssignmentSchedules.GetAppScope
+ operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetAppScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
directoryScope:
- operationId: roleManagement.directory.RoleAssignmentSchedules.GetDirectoryScope
+ operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetDirectoryScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
principal:
- operationId: roleManagement.directory.RoleAssignmentSchedules.GetPrincipal
+ operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetPrincipal
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
roleDefinition:
- operationId: roleManagement.directory.RoleAssignmentSchedules.GetRoleDefinition
+ operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetRoleDefinition
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
activatedUsing:
- operationId: roleManagement.directory.RoleAssignmentSchedules.GetActivatedUsing
+ operationId: roleManagement.directory.RoleAssignmentScheduleInstances.GetActivatedUsing
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleAssignmentSchedules in roleManagement
- operationId: roleManagement.directory_UpdateRoleAssignmentSchedules
+ summary: Update the navigation property roleAssignmentScheduleInstances in roleManagement
+ operationId: roleManagement.directory_UpdateRoleAssignmentScheduleInstances
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
required: true
responses:
'204':
@@ -12045,16 +12283,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleAssignmentSchedules for roleManagement
- operationId: roleManagement.directory_DeleteRoleAssignmentSchedules
+ summary: Delete navigation property roleAssignmentScheduleInstances for roleManagement
+ operationId: roleManagement.directory_DeleteRoleAssignmentScheduleInstances
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
- name: If-Match
in: header
description: ETag
@@ -12066,20 +12304,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing':
+ '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing':
get:
tags:
- roleManagement.rbacApplication
summary: Get activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentSchedules_GetActivatedUsing
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetActivatedUsing
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
- name: $select
in: query
description: Select properties to be returned
@@ -12092,15 +12330,13 @@ paths:
enum:
- id
- appScopeId
- - createdDateTime
- - createdUsing
- directoryScopeId
- - modifiedDateTime
- principalId
- roleDefinitionId
- - status
+ - endDateTime
- memberType
- - scheduleInfo
+ - roleEligibilityScheduleId
+ - startDateTime
- appScope
- directoryScope
- principal
@@ -12128,41 +12364,41 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
links:
appScope:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetAppScope
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
directoryScope:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
principal:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetPrincipal
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
roleDefinition:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetRoleDefinition
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref':
+ '/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref':
get:
tags:
- roleManagement.rbacApplication
summary: Get ref of activatedUsing from roleManagement
- operationId: roleManagement.directory.roleAssignmentSchedules_GetRefActivatedUsing
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetRefActivatedUsing
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
responses:
'200':
description: Retrieved navigation property link
@@ -12172,21 +12408,21 @@ paths:
type: string
links:
appScope:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetAppScope
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetAppScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
directoryScope:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetDirectoryScope
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
principal:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetPrincipal
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetPrincipal
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
roleDefinition:
- operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetRoleDefinition
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances.ActivatedUsing.GetRoleDefinition
parameters:
- unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ unifiedRoleAssignmentScheduleInstance-id: $request.path.unifiedRoleAssignmentScheduleInstance-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -12194,15 +12430,15 @@ paths:
tags:
- roleManagement.rbacApplication
summary: Update the ref of navigation property activatedUsing in roleManagement
- operationId: roleManagement.directory.roleAssignmentSchedules_SetRefActivatedUsing
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances_SetRefActivatedUsing
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
requestBody:
description: New navigation property ref values
content:
@@ -12222,15 +12458,15 @@ paths:
tags:
- roleManagement.rbacApplication
summary: Delete ref of navigation property activatedUsing for roleManagement
- operationId: roleManagement.directory.roleAssignmentSchedules_DeleteRefActivatedUsing
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances_DeleteRefActivatedUsing
parameters:
- - name: unifiedRoleAssignmentSchedule-id
+ - name: unifiedRoleAssignmentScheduleInstance-id
in: path
- description: 'key: id of unifiedRoleAssignmentSchedule'
+ description: 'key: id of unifiedRoleAssignmentScheduleInstance'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance
- name: If-Match
in: header
description: ETag
@@ -12242,19 +12478,19 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})':
+ '/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- roleManagement.Functions
summary: Invoke function filterByCurrentUser
- operationId: roleManagement.directory.roleAssignmentSchedules_filterByCurrentUser
+ operationId: roleManagement.directory.roleAssignmentScheduleInstances_filterByCurrentUser
parameters:
- name: on
in: path
description: 'Usage: on={on}'
required: true
schema:
- $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleFilterByCurrentUserOptions'
+ $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -12263,16 +12499,16 @@ paths:
schema:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
- /roleManagement/directory/roleDefinitions:
+ /roleManagement/directory/roleAssignmentSchedules:
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleDefinitions from roleManagement
- operationId: roleManagement.directory_ListRoleDefinitions
+ summary: Get roleAssignmentSchedules from roleManagement
+ operationId: roleManagement.directory_ListRoleAssignmentSchedules
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
@@ -12291,22 +12527,28 @@ paths:
enum:
- id
- id desc
- - description
- - description desc
- - displayName
- - displayName desc
- - isBuiltIn
- - isBuiltIn desc
- - isEnabled
- - isEnabled desc
- - resourceScopes
- - resourceScopes desc
- - rolePermissions
- - rolePermissions desc
- - templateId
- - templateId desc
- - version
- - version desc
+ - appScopeId
+ - appScopeId desc
+ - createdDateTime
+ - createdDateTime desc
+ - createdUsing
+ - createdUsing desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - modifiedDateTime
+ - modifiedDateTime desc
+ - principalId
+ - principalId desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ - status
+ - status desc
+ - assignmentType
+ - assignmentType desc
+ - memberType
+ - memberType desc
+ - scheduleInfo
+ - scheduleInfo desc
type: string
- name: $select
in: query
@@ -12319,15 +12561,22 @@ paths:
items:
enum:
- id
- - description
- - displayName
- - isBuiltIn
- - isEnabled
- - resourceScopes
- - rolePermissions
- - templateId
- - version
- - inheritsPermissionsFrom
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - assignmentType
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
- name: $expand
in: query
@@ -12340,7 +12589,11 @@ paths:
items:
enum:
- '*'
- - inheritsPermissionsFrom
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
responses:
'200':
@@ -12348,13 +12601,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleDefinition
+ title: Collection of unifiedRoleAssignmentSchedule
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
'@odata.nextLink':
type: string
additionalProperties:
@@ -12368,14 +12621,14 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleDefinitions for roleManagement
- operationId: roleManagement.directory_CreateRoleDefinitions
+ summary: Create new navigation property to roleAssignmentSchedules for roleManagement
+ operationId: roleManagement.directory_CreateRoleAssignmentSchedules
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
required: true
responses:
'201':
@@ -12383,24 +12636,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}':
+ '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleDefinitions from roleManagement
- operationId: roleManagement.directory_GetRoleDefinitions
+ summary: Get roleAssignmentSchedules from roleManagement
+ operationId: roleManagement.directory_GetRoleAssignmentSchedules
parameters:
- - name: unifiedRoleDefinition-id
+ - name: unifiedRoleAssignmentSchedule-id
in: path
- description: 'key: id of unifiedRoleDefinition'
+ description: 'key: id of unifiedRoleAssignmentSchedule'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleDefinition
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
- name: $select
in: query
description: Select properties to be returned
@@ -12412,15 +12665,22 @@ paths:
items:
enum:
- id
- - description
- - displayName
- - isBuiltIn
- - isEnabled
- - resourceScopes
- - rolePermissions
- - templateId
- - version
- - inheritsPermissionsFrom
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - assignmentType
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
- name: $expand
in: query
@@ -12433,7 +12693,11 @@ paths:
items:
enum:
- '*'
- - inheritsPermissionsFrom
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - activatedUsing
type: string
responses:
'200':
@@ -12441,34 +12705,50 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
links:
- inheritsPermissionsFrom:
- operationId: roleManagement.directory.RoleDefinitions.ListInheritsPermissionsFrom
+ appScope:
+ operationId: roleManagement.directory.RoleAssignmentSchedules.GetAppScope
parameters:
- unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleAssignmentSchedules.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ principal:
+ operationId: roleManagement.directory.RoleAssignmentSchedules.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleAssignmentSchedules.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ activatedUsing:
+ operationId: roleManagement.directory.RoleAssignmentSchedules.GetActivatedUsing
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleDefinitions in roleManagement
- operationId: roleManagement.directory_UpdateRoleDefinitions
+ summary: Update the navigation property roleAssignmentSchedules in roleManagement
+ operationId: roleManagement.directory_UpdateRoleAssignmentSchedules
parameters:
- - name: unifiedRoleDefinition-id
+ - name: unifiedRoleAssignmentSchedule-id
in: path
- description: 'key: id of unifiedRoleDefinition'
+ description: 'key: id of unifiedRoleAssignmentSchedule'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleDefinition
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
required: true
responses:
'204':
@@ -12479,16 +12759,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleDefinitions for roleManagement
- operationId: roleManagement.directory_DeleteRoleDefinitions
+ summary: Delete navigation property roleAssignmentSchedules for roleManagement
+ operationId: roleManagement.directory_DeleteRoleAssignmentSchedules
parameters:
- - name: unifiedRoleDefinition-id
+ - name: unifiedRoleAssignmentSchedule-id
in: path
- description: 'key: id of unifiedRoleDefinition'
+ description: 'key: id of unifiedRoleAssignmentSchedule'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleDefinition
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
- name: If-Match
in: header
description: ETag
@@ -12500,20 +12780,214 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom':
+ '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing':
get:
tags:
- roleManagement.rbacApplication
- summary: Get inheritsPermissionsFrom from roleManagement
- operationId: roleManagement.directory.roleDefinitions_ListInheritsPermissionsFrom
+ summary: Get activatedUsing from roleManagement
+ operationId: roleManagement.directory.roleAssignmentSchedules_GetActivatedUsing
parameters:
- - name: unifiedRoleDefinition-id
+ - name: unifiedRoleAssignmentSchedule-id
in: path
- description: 'key: id of unifiedRoleDefinition'
+ description: 'key: id of unifiedRoleAssignmentSchedule'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleDefinition
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetAppScope
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref':
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get ref of activatedUsing from roleManagement
+ operationId: roleManagement.directory.roleAssignmentSchedules_GetRefActivatedUsing
+ parameters:
+ - name: unifiedRoleAssignmentSchedule-id
+ in: path
+ description: 'key: id of unifiedRoleAssignmentSchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ responses:
+ '200':
+ description: Retrieved navigation property link
+ content:
+ application/json:
+ schema:
+ type: string
+ links:
+ appScope:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetAppScope
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ directoryScope:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetDirectoryScope
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ principal:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetPrincipal
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ roleDefinition:
+ operationId: roleManagement.directory.roleAssignmentSchedules.ActivatedUsing.GetRoleDefinition
+ parameters:
+ unifiedRoleAssignmentSchedule-id: $request.path.unifiedRoleAssignmentSchedule-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the ref of navigation property activatedUsing in roleManagement
+ operationId: roleManagement.directory.roleAssignmentSchedules_SetRefActivatedUsing
+ parameters:
+ - name: unifiedRoleAssignmentSchedule-id
+ in: path
+ description: 'key: id of unifiedRoleAssignmentSchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ requestBody:
+ description: New navigation property ref values
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete ref of navigation property activatedUsing for roleManagement
+ operationId: roleManagement.directory.roleAssignmentSchedules_DeleteRefActivatedUsing
+ parameters:
+ - name: unifiedRoleAssignmentSchedule-id
+ in: path
+ description: 'key: id of unifiedRoleAssignmentSchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleAssignmentSchedule
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.directory.roleAssignmentSchedules_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/directory/roleDefinitions:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleDefinitions from roleManagement
+ operationId: roleManagement.directory_ListRoleDefinitions
+ parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -12608,16 +13082,8 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to inheritsPermissionsFrom for roleManagement
- operationId: roleManagement.directory.roleDefinitions_CreateInheritsPermissionsFrom
- parameters:
- - name: unifiedRoleDefinition-id
- in: path
- description: 'key: id of unifiedRoleDefinition'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleDefinition
+ summary: Create new navigation property to roleDefinitions for roleManagement
+ operationId: roleManagement.directory_CreateRoleDefinitions
requestBody:
description: New navigation property
content:
@@ -12635,12 +13101,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}':
+ '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get inheritsPermissionsFrom from roleManagement
- operationId: roleManagement.directory.roleDefinitions_GetInheritsPermissionsFrom
+ summary: Get roleDefinitions from roleManagement
+ operationId: roleManagement.directory_GetRoleDefinitions
parameters:
- name: unifiedRoleDefinition-id
in: path
@@ -12649,13 +13115,6 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleDefinition
- - name: unifiedRoleDefinition-id1
- in: path
- description: 'key: id of unifiedRoleDefinition'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleDefinition
- name: $select
in: query
description: Select properties to be returned
@@ -12699,18 +13158,17 @@ paths:
$ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
links:
inheritsPermissionsFrom:
- operationId: roleManagement.directory.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom
+ operationId: roleManagement.directory.RoleDefinitions.ListInheritsPermissionsFrom
parameters:
unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id
- unifiedRoleDefinition-id1: $request.path.unifiedRoleDefinition-id1
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property inheritsPermissionsFrom in roleManagement
- operationId: roleManagement.directory.roleDefinitions_UpdateInheritsPermissionsFrom
+ summary: Update the navigation property roleDefinitions in roleManagement
+ operationId: roleManagement.directory_UpdateRoleDefinitions
parameters:
- name: unifiedRoleDefinition-id
in: path
@@ -12719,13 +13177,6 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleDefinition
- - name: unifiedRoleDefinition-id1
- in: path
- description: 'key: id of unifiedRoleDefinition'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleDefinition
requestBody:
description: New navigation property values
content:
@@ -12742,8 +13193,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property inheritsPermissionsFrom for roleManagement
- operationId: roleManagement.directory.roleDefinitions_DeleteInheritsPermissionsFrom
+ summary: Delete navigation property roleDefinitions for roleManagement
+ operationId: roleManagement.directory_DeleteRoleDefinitions
parameters:
- name: unifiedRoleDefinition-id
in: path
@@ -12752,13 +13203,6 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleDefinition
- - name: unifiedRoleDefinition-id1
- in: path
- description: 'key: id of unifiedRoleDefinition'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleDefinition
- name: If-Match
in: header
description: ETag
@@ -12770,15 +13214,22 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /roleManagement/directory/roleEligibilityRequests:
+ '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleEligibilityRequests from roleManagement
- operationId: roleManagement.directory_ListRoleEligibilityRequests
+ summary: Get inheritsPermissionsFrom from roleManagement
+ operationId: roleManagement.directory.roleDefinitions_ListInheritsPermissionsFrom
parameters:
- - $ref: '#/components/parameters/top'
- - $ref: '#/components/parameters/skip'
+ - name: unifiedRoleDefinition-id
+ in: path
+ description: 'key: id of unifiedRoleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleDefinition
+ - $ref: '#/components/parameters/top'
+ - $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
- $ref: '#/components/parameters/filter'
- $ref: '#/components/parameters/count'
@@ -12794,38 +13245,22 @@ paths:
enum:
- id
- id desc
- - approvalId
- - approvalId desc
- - completedDateTime
- - completedDateTime desc
- - createdBy
- - createdBy desc
- - createdDateTime
- - createdDateTime desc
- - customData
- - customData desc
- - status
- - status desc
- - action
- - action desc
- - appScopeId
- - appScopeId desc
- - directoryScopeId
- - directoryScopeId desc
- - isValidationOnly
- - isValidationOnly desc
- - justification
- - justification desc
- - principalId
- - principalId desc
- - roleDefinitionId
- - roleDefinitionId desc
- - scheduleInfo
- - scheduleInfo desc
- - targetScheduleId
- - targetScheduleId desc
- - ticketInfo
- - ticketInfo desc
+ - description
+ - description desc
+ - displayName
+ - displayName desc
+ - isBuiltIn
+ - isBuiltIn desc
+ - isEnabled
+ - isEnabled desc
+ - resourceScopes
+ - resourceScopes desc
+ - rolePermissions
+ - rolePermissions desc
+ - templateId
+ - templateId desc
+ - version
+ - version desc
type: string
- name: $select
in: query
@@ -12838,27 +13273,15 @@ paths:
items:
enum:
- id
- - approvalId
- - completedDateTime
- - createdBy
- - createdDateTime
- - customData
- - status
- - action
- - appScopeId
- - directoryScopeId
- - isValidationOnly
- - justification
- - principalId
- - roleDefinitionId
- - scheduleInfo
- - targetScheduleId
- - ticketInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - description
+ - displayName
+ - isBuiltIn
+ - isEnabled
+ - resourceScopes
+ - rolePermissions
+ - templateId
+ - version
+ - inheritsPermissionsFrom
type: string
- name: $expand
in: query
@@ -12871,11 +13294,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - inheritsPermissionsFrom
type: string
responses:
'200':
@@ -12883,13 +13302,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleEligibilityRequest
+ title: Collection of unifiedRoleDefinition
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
'@odata.nextLink':
type: string
additionalProperties:
@@ -12903,14 +13322,22 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleEligibilityRequests for roleManagement
- operationId: roleManagement.directory_CreateRoleEligibilityRequests
+ summary: Create new navigation property to inheritsPermissionsFrom for roleManagement
+ operationId: roleManagement.directory.roleDefinitions_CreateInheritsPermissionsFrom
+ parameters:
+ - name: unifiedRoleDefinition-id
+ in: path
+ description: 'key: id of unifiedRoleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleDefinition
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
required: true
responses:
'201':
@@ -12918,24 +13345,31 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}':
+ '/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleEligibilityRequests from roleManagement
- operationId: roleManagement.directory_GetRoleEligibilityRequests
+ summary: Get inheritsPermissionsFrom from roleManagement
+ operationId: roleManagement.directory.roleDefinitions_GetInheritsPermissionsFrom
parameters:
- - name: unifiedRoleEligibilityRequest-id
+ - name: unifiedRoleDefinition-id
in: path
- description: 'key: id of unifiedRoleEligibilityRequest'
+ description: 'key: id of unifiedRoleDefinition'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ x-ms-docs-key-type: unifiedRoleDefinition
+ - name: unifiedRoleDefinition-id1
+ in: path
+ description: 'key: id of unifiedRoleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleDefinition
- name: $select
in: query
description: Select properties to be returned
@@ -12947,27 +13381,15 @@ paths:
items:
enum:
- id
- - approvalId
- - completedDateTime
- - createdBy
- - createdDateTime
- - customData
- - status
- - action
- - appScopeId
- - directoryScopeId
- - isValidationOnly
- - justification
- - principalId
- - roleDefinitionId
- - scheduleInfo
- - targetScheduleId
- - ticketInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - description
+ - displayName
+ - isBuiltIn
+ - isEnabled
+ - resourceScopes
+ - rolePermissions
+ - templateId
+ - version
+ - inheritsPermissionsFrom
type: string
- name: $expand
in: query
@@ -12980,11 +13402,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
- - targetSchedule
+ - inheritsPermissionsFrom
type: string
responses:
'200':
@@ -12992,50 +13410,42 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
links:
- appScope:
- operationId: roleManagement.directory.RoleEligibilityRequests.GetAppScope
- parameters:
- unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
- directoryScope:
- operationId: roleManagement.directory.RoleEligibilityRequests.GetDirectoryScope
- parameters:
- unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
- principal:
- operationId: roleManagement.directory.RoleEligibilityRequests.GetPrincipal
- parameters:
- unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
- roleDefinition:
- operationId: roleManagement.directory.RoleEligibilityRequests.GetRoleDefinition
- parameters:
- unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
- targetSchedule:
- operationId: roleManagement.directory.RoleEligibilityRequests.GetTargetSchedule
+ inheritsPermissionsFrom:
+ operationId: roleManagement.directory.roleDefinitions.InheritsPermissionsFrom.ListInheritsPermissionsFrom
parameters:
- unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
+ unifiedRoleDefinition-id: $request.path.unifiedRoleDefinition-id
+ unifiedRoleDefinition-id1: $request.path.unifiedRoleDefinition-id1
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleEligibilityRequests in roleManagement
- operationId: roleManagement.directory_UpdateRoleEligibilityRequests
+ summary: Update the navigation property inheritsPermissionsFrom in roleManagement
+ operationId: roleManagement.directory.roleDefinitions_UpdateInheritsPermissionsFrom
parameters:
- - name: unifiedRoleEligibilityRequest-id
+ - name: unifiedRoleDefinition-id
in: path
- description: 'key: id of unifiedRoleEligibilityRequest'
+ description: 'key: id of unifiedRoleDefinition'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ x-ms-docs-key-type: unifiedRoleDefinition
+ - name: unifiedRoleDefinition-id1
+ in: path
+ description: 'key: id of unifiedRoleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleDefinition
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
required: true
responses:
'204':
@@ -13046,16 +13456,23 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleEligibilityRequests for roleManagement
- operationId: roleManagement.directory_DeleteRoleEligibilityRequests
+ summary: Delete navigation property inheritsPermissionsFrom for roleManagement
+ operationId: roleManagement.directory.roleDefinitions_DeleteInheritsPermissionsFrom
parameters:
- - name: unifiedRoleEligibilityRequest-id
+ - name: unifiedRoleDefinition-id
in: path
- description: 'key: id of unifiedRoleEligibilityRequest'
+ description: 'key: id of unifiedRoleDefinition'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ x-ms-docs-key-type: unifiedRoleDefinition
+ - name: unifiedRoleDefinition-id1
+ in: path
+ description: 'key: id of unifiedRoleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleDefinition
- name: If-Match
in: header
description: ETag
@@ -13067,23 +13484,21 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope':
+ /roleManagement/directory/roleEligibilityRequests:
get:
tags:
- roleManagement.rbacApplication
- summary: Get appScope from roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_GetAppScope
+ summary: Get roleEligibilityRequests from roleManagement
+ operationId: roleManagement.directory_ListRoleEligibilityRequests
parameters:
- - name: unifiedRoleEligibilityRequest-id
- in: path
- description: 'key: id of unifiedRoleEligibilityRequest'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRoleEligibilityRequest
- - name: $select
+ - $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: Select properties to be returned
+ description: Order items by property values
style: form
explode: false
schema:
@@ -13092,11 +13507,75 @@ paths:
items:
enum:
- id
- - displayName
- - type
- type: string
- - name: $expand
- in: query
+ - id desc
+ - approvalId
+ - approvalId desc
+ - completedDateTime
+ - completedDateTime desc
+ - createdBy
+ - createdBy desc
+ - createdDateTime
+ - createdDateTime desc
+ - customData
+ - customData desc
+ - status
+ - status desc
+ - action
+ - action desc
+ - appScopeId
+ - appScopeId desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - isValidationOnly
+ - isValidationOnly desc
+ - justification
+ - justification desc
+ - principalId
+ - principalId desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ - scheduleInfo
+ - scheduleInfo desc
+ - targetScheduleId
+ - targetScheduleId desc
+ - ticketInfo
+ - ticketInfo desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - approvalId
+ - completedDateTime
+ - createdBy
+ - createdDateTime
+ - customData
+ - status
+ - action
+ - appScopeId
+ - directoryScopeId
+ - isValidationOnly
+ - justification
+ - principalId
+ - roleDefinitionId
+ - scheduleInfo
+ - targetScheduleId
+ - ticketInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
+ type: string
+ - name: $expand
+ in: query
description: Expand related entities
style: form
explode: false
@@ -13106,6 +13585,11 @@ paths:
items:
enum:
- '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
type: string
responses:
'200':
@@ -13113,16 +13597,51 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.appScope'
+ title: Collection of unifiedRoleEligibilityRequest
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
default:
$ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref':
+ post:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Create new navigation property to roleEligibilityRequests for roleManagement
+ operationId: roleManagement.directory_CreateRoleEligibilityRequests
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of appScope from roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_GetRefAppScope
+ summary: Get roleEligibilityRequests from roleManagement
+ operationId: roleManagement.directory_GetRoleEligibilityRequests
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13131,21 +13650,92 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - approvalId
+ - completedDateTime
+ - createdBy
+ - createdDateTime
+ - customData
+ - status
+ - action
+ - appScopeId
+ - directoryScopeId
+ - isValidationOnly
+ - justification
+ - principalId
+ - roleDefinitionId
+ - scheduleInfo
+ - targetScheduleId
+ - ticketInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ - targetSchedule
+ type: string
responses:
'200':
- description: Retrieved navigation property link
+ description: Retrieved navigation property
content:
application/json:
schema:
- type: string
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
+ links:
+ appScope:
+ operationId: roleManagement.directory.RoleEligibilityRequests.GetAppScope
+ parameters:
+ unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleEligibilityRequests.GetDirectoryScope
+ parameters:
+ unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
+ principal:
+ operationId: roleManagement.directory.RoleEligibilityRequests.GetPrincipal
+ parameters:
+ unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleEligibilityRequests.GetRoleDefinition
+ parameters:
+ unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
+ targetSchedule:
+ operationId: roleManagement.directory.RoleEligibilityRequests.GetTargetSchedule
+ parameters:
+ unifiedRoleEligibilityRequest-id: $request.path.unifiedRoleEligibilityRequest-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- put:
+ patch:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property appScope in roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_SetRefAppScope
+ summary: Update the navigation property roleEligibilityRequests in roleManagement
+ operationId: roleManagement.directory_UpdateRoleEligibilityRequests
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13155,13 +13745,11 @@ paths:
type: string
x-ms-docs-key-type: unifiedRoleEligibilityRequest
requestBody:
- description: New navigation property ref values
+ description: New navigation property values
content:
application/json:
schema:
- type: object
- additionalProperties:
- type: object
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityRequest'
required: true
responses:
'204':
@@ -13172,8 +13760,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property appScope for roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefAppScope
+ summary: Delete navigation property roleEligibilityRequests for roleManagement
+ operationId: roleManagement.directory_DeleteRoleEligibilityRequests
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13193,12 +13781,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope':
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope':
get:
tags:
- roleManagement.rbacApplication
- summary: Get directoryScope from roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_GetDirectoryScope
+ summary: Get appScope from roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_GetAppScope
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13218,7 +13806,8 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - displayName
+ - type
type: string
- name: $expand
in: query
@@ -13238,16 +13827,16 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ $ref: '#/components/schemas/microsoft.graph.appScope'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref':
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref':
get:
tags:
- roleManagement.rbacApplication
- summary: Get ref of directoryScope from roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_GetRefDirectoryScope
+ summary: Get ref of appScope from roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_GetRefAppScope
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13269,8 +13858,8 @@ paths:
put:
tags:
- roleManagement.rbacApplication
- summary: Update the ref of navigation property directoryScope in roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_SetRefDirectoryScope
+ summary: Update the ref of navigation property appScope in roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_SetRefAppScope
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13297,8 +13886,8 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete ref of navigation property directoryScope for roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefDirectoryScope
+ summary: Delete ref of navigation property appScope for roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefAppScope
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13318,12 +13907,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel':
- post:
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope':
+ get:
tags:
- - roleManagement.Actions
- summary: Invoke action cancel
- operationId: roleManagement.directory.roleEligibilityRequests_cancel
+ - roleManagement.rbacApplication
+ summary: Get directoryScope from roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_GetDirectoryScope
parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
@@ -13332,19 +13921,144 @@ paths:
schema:
type: string
x-ms-docs-key-type: unifiedRoleEligibilityRequest
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: action
- '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal':
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get principal from roleManagement
- operationId: roleManagement.directory.roleEligibilityRequests_GetPrincipal
- parameters:
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref':
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get ref of directoryScope from roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_GetRefDirectoryScope
+ parameters:
+ - name: unifiedRoleEligibilityRequest-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ responses:
+ '200':
+ description: Retrieved navigation property link
+ content:
+ application/json:
+ schema:
+ type: string
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the ref of navigation property directoryScope in roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_SetRefDirectoryScope
+ parameters:
+ - name: unifiedRoleEligibilityRequest-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ requestBody:
+ description: New navigation property ref values
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete ref of navigation property directoryScope for roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_DeleteRefDirectoryScope
+ parameters:
+ - name: unifiedRoleEligibilityRequest-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel':
+ post:
+ tags:
+ - roleManagement.Actions
+ summary: Invoke action cancel
+ operationId: roleManagement.directory.roleEligibilityRequests_cancel
+ parameters:
+ - name: unifiedRoleEligibilityRequest-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityRequest
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal':
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get principal from roleManagement
+ operationId: roleManagement.directory.roleEligibilityRequests_GetPrincipal
+ parameters:
- name: unifiedRoleEligibilityRequest-id
in: path
description: 'key: id of unifiedRoleEligibilityRequest'
@@ -13832,22 +14546,791 @@ paths:
enum:
- id
- id desc
- - appScopeId
- - appScopeId desc
- - directoryScopeId
- - directoryScopeId desc
- - principalId
- - principalId desc
- - roleDefinitionId
- - roleDefinitionId desc
- - endDateTime
- - endDateTime desc
- - memberType
- - memberType desc
- - roleEligibilityScheduleId
- - roleEligibilityScheduleId desc
- - startDateTime
- - startDateTime desc
+ - appScopeId
+ - appScopeId desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - principalId
+ - principalId desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ - endDateTime
+ - endDateTime desc
+ - memberType
+ - memberType desc
+ - roleEligibilityScheduleId
+ - roleEligibilityScheduleId desc
+ - startDateTime
+ - startDateTime desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - directoryScopeId
+ - principalId
+ - roleDefinitionId
+ - endDateTime
+ - memberType
+ - roleEligibilityScheduleId
+ - startDateTime
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of unifiedRoleEligibilityScheduleInstance
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Create new navigation property to roleEligibilityScheduleInstances for roleManagement
+ operationId: roleManagement.directory_CreateRoleEligibilityScheduleInstances
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}':
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleEligibilityScheduleInstances from roleManagement
+ operationId: roleManagement.directory_GetRoleEligibilityScheduleInstances
+ parameters:
+ - name: unifiedRoleEligibilityScheduleInstance-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - directoryScopeId
+ - principalId
+ - roleDefinitionId
+ - endDateTime
+ - memberType
+ - roleEligibilityScheduleId
+ - startDateTime
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ links:
+ appScope:
+ operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetAppScope
+ parameters:
+ unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetDirectoryScope
+ parameters:
+ unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
+ principal:
+ operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetPrincipal
+ parameters:
+ unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetRoleDefinition
+ parameters:
+ unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement
+ operationId: roleManagement.directory_UpdateRoleEligibilityScheduleInstances
+ parameters:
+ - name: unifiedRoleEligibilityScheduleInstance-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement
+ operationId: roleManagement.directory_DeleteRoleEligibilityScheduleInstances
+ parameters:
+ - name: unifiedRoleEligibilityScheduleInstance-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.directory.roleEligibilityScheduleInstances_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/directory/roleEligibilitySchedules:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleEligibilitySchedules from roleManagement
+ operationId: roleManagement.directory_ListRoleEligibilitySchedules
+ 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:
+ enum:
+ - id
+ - id desc
+ - appScopeId
+ - appScopeId desc
+ - createdDateTime
+ - createdDateTime desc
+ - createdUsing
+ - createdUsing desc
+ - directoryScopeId
+ - directoryScopeId desc
+ - modifiedDateTime
+ - modifiedDateTime desc
+ - principalId
+ - principalId desc
+ - roleDefinitionId
+ - roleDefinitionId desc
+ - status
+ - status desc
+ - memberType
+ - memberType desc
+ - scheduleInfo
+ - scheduleInfo desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of unifiedRoleEligibilitySchedule
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Create new navigation property to roleEligibilitySchedules for roleManagement
+ operationId: roleManagement.directory_CreateRoleEligibilitySchedules
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}':
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get roleEligibilitySchedules from roleManagement
+ operationId: roleManagement.directory_GetRoleEligibilitySchedules
+ parameters:
+ - name: unifiedRoleEligibilitySchedule-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilitySchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - appScopeId
+ - createdDateTime
+ - createdUsing
+ - directoryScopeId
+ - modifiedDateTime
+ - principalId
+ - roleDefinitionId
+ - status
+ - memberType
+ - scheduleInfo
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appScope
+ - directoryScope
+ - principal
+ - roleDefinition
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ links:
+ appScope:
+ operationId: roleManagement.directory.RoleEligibilitySchedules.GetAppScope
+ parameters:
+ unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
+ directoryScope:
+ operationId: roleManagement.directory.RoleEligibilitySchedules.GetDirectoryScope
+ parameters:
+ unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
+ principal:
+ operationId: roleManagement.directory.RoleEligibilitySchedules.GetPrincipal
+ parameters:
+ unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
+ roleDefinition:
+ operationId: roleManagement.directory.RoleEligibilitySchedules.GetRoleDefinition
+ parameters:
+ unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the navigation property roleEligibilitySchedules in roleManagement
+ operationId: roleManagement.directory_UpdateRoleEligibilitySchedules
+ parameters:
+ - name: unifiedRoleEligibilitySchedule-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilitySchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete navigation property roleEligibilitySchedules for roleManagement
+ operationId: roleManagement.directory_DeleteRoleEligibilitySchedules
+ parameters:
+ - name: unifiedRoleEligibilitySchedule-id
+ in: path
+ description: 'key: id of unifiedRoleEligibilitySchedule'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/directory/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.directory.roleEligibilitySchedules_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/entitlementManagement:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get entitlementManagement from roleManagement
+ operationId: roleManagement_GetEntitlementManagement
+ parameters:
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - resourceNamespaces
+ - roleAssignments
+ - roleDefinitions
+ - roleAssignmentApprovals
+ - roleAssignmentRequests
+ - roleAssignmentScheduleInstances
+ - roleAssignmentSchedules
+ - roleEligibilityRequests
+ - roleEligibilityScheduleInstances
+ - roleEligibilitySchedules
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - resourceNamespaces
+ - roleAssignments
+ - roleDefinitions
+ - roleAssignmentApprovals
+ - roleAssignmentRequests
+ - roleAssignmentScheduleInstances
+ - roleAssignmentSchedules
+ - roleEligibilityRequests
+ - roleEligibilityScheduleInstances
+ - roleEligibilitySchedules
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.rbacApplication'
+ links:
+ resourceNamespaces:
+ operationId: roleManagement.EntitlementManagement.ListResourceNamespaces
+ roleAssignments:
+ operationId: roleManagement.EntitlementManagement.ListRoleAssignments
+ roleDefinitions:
+ operationId: roleManagement.EntitlementManagement.ListRoleDefinitions
+ roleAssignmentApprovals:
+ operationId: roleManagement.EntitlementManagement.ListRoleAssignmentApprovals
+ roleAssignmentRequests:
+ operationId: roleManagement.EntitlementManagement.ListRoleAssignmentRequests
+ roleAssignmentScheduleInstances:
+ operationId: roleManagement.EntitlementManagement.ListRoleAssignmentScheduleInstances
+ roleAssignmentSchedules:
+ operationId: roleManagement.EntitlementManagement.ListRoleAssignmentSchedules
+ roleEligibilityRequests:
+ operationId: roleManagement.EntitlementManagement.ListRoleEligibilityRequests
+ roleEligibilityScheduleInstances:
+ operationId: roleManagement.EntitlementManagement.ListRoleEligibilityScheduleInstances
+ roleEligibilitySchedules:
+ operationId: roleManagement.EntitlementManagement.ListRoleEligibilitySchedules
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Update the navigation property entitlementManagement in roleManagement
+ operationId: roleManagement_UpdateEntitlementManagement
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.rbacApplication'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Delete navigation property entitlementManagement for roleManagement
+ operationId: roleManagement_DeleteEntitlementManagement
+ parameters:
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/roleManagement/entitlementManagement/microsoft.graph.roleScheduleInstances(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function roleScheduleInstances
+ operationId: roleManagement.entitlementManagement_roleScheduleInstances
+ parameters:
+ - name: directoryScopeId
+ in: path
+ description: 'Usage: directoryScopeId={directoryScopeId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: appScopeId
+ in: path
+ description: 'Usage: appScopeId={appScopeId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: principalId
+ in: path
+ description: 'Usage: principalId={principalId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: roleDefinitionId
+ in: path
+ description: 'Usage: roleDefinitionId={roleDefinitionId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/roleManagement/entitlementManagement/microsoft.graph.roleSchedules(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function roleSchedules
+ operationId: roleManagement.entitlementManagement_roleSchedules
+ parameters:
+ - name: directoryScopeId
+ in: path
+ description: 'Usage: directoryScopeId={directoryScopeId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: appScopeId
+ in: path
+ description: 'Usage: appScopeId={appScopeId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: principalId
+ in: path
+ description: 'Usage: principalId={principalId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ - name: roleDefinitionId
+ in: path
+ description: 'Usage: roleDefinitionId={roleDefinitionId}'
+ required: true
+ schema:
+ type: string
+ nullable: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ /roleManagement/entitlementManagement/resourceNamespaces:
+ get:
+ tags:
+ - roleManagement.rbacApplication
+ summary: Get resourceNamespaces from roleManagement
+ operationId: roleManagement.entitlementManagement_ListResourceNamespaces
+ 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:
+ enum:
+ - id
+ - id desc
+ - name
+ - name desc
type: string
- name: $select
in: query
@@ -13860,18 +15343,8 @@ paths:
items:
enum:
- id
- - appScopeId
- - directoryScopeId
- - principalId
- - roleDefinitionId
- - endDateTime
- - memberType
- - roleEligibilityScheduleId
- - startDateTime
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - name
+ - resourceActions
type: string
- name: $expand
in: query
@@ -13884,10 +15357,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - resourceActions
type: string
responses:
'200':
@@ -13895,13 +15365,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleEligibilityScheduleInstance
+ title: Collection of unifiedRbacResourceNamespace
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
'@odata.nextLink':
type: string
additionalProperties:
@@ -13915,14 +15385,14 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleEligibilityScheduleInstances for roleManagement
- operationId: roleManagement.directory_CreateRoleEligibilityScheduleInstances
+ summary: Create new navigation property to resourceNamespaces for roleManagement
+ operationId: roleManagement.entitlementManagement_CreateResourceNamespaces
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
required: true
responses:
'201':
@@ -13930,24 +15400,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}':
+ '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleEligibilityScheduleInstances from roleManagement
- operationId: roleManagement.directory_GetRoleEligibilityScheduleInstances
+ summary: Get resourceNamespaces from roleManagement
+ operationId: roleManagement.entitlementManagement_GetResourceNamespaces
parameters:
- - name: unifiedRoleEligibilityScheduleInstance-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
- name: $select
in: query
description: Select properties to be returned
@@ -13959,18 +15429,8 @@ paths:
items:
enum:
- id
- - appScopeId
- - directoryScopeId
- - principalId
- - roleDefinitionId
- - endDateTime
- - memberType
- - roleEligibilityScheduleId
- - startDateTime
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - name
+ - resourceActions
type: string
- name: $expand
in: query
@@ -13983,10 +15443,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - resourceActions
type: string
responses:
'200':
@@ -13994,46 +15451,34 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
links:
- appScope:
- operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetAppScope
- parameters:
- unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
- directoryScope:
- operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetDirectoryScope
- parameters:
- unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
- principal:
- operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetPrincipal
- parameters:
- unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
- roleDefinition:
- operationId: roleManagement.directory.RoleEligibilityScheduleInstances.GetRoleDefinition
+ resourceActions:
+ operationId: roleManagement.entitlementManagement.ResourceNamespaces.ListResourceActions
parameters:
- unifiedRoleEligibilityScheduleInstance-id: $request.path.unifiedRoleEligibilityScheduleInstance-id
+ unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleEligibilityScheduleInstances in roleManagement
- operationId: roleManagement.directory_UpdateRoleEligibilityScheduleInstances
+ summary: Update the navigation property resourceNamespaces in roleManagement
+ operationId: roleManagement.entitlementManagement_UpdateResourceNamespaces
parameters:
- - name: unifiedRoleEligibilityScheduleInstance-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
required: true
responses:
'204':
@@ -14044,16 +15489,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleEligibilityScheduleInstances for roleManagement
- operationId: roleManagement.directory_DeleteRoleEligibilityScheduleInstances
+ summary: Delete navigation property resourceNamespaces for roleManagement
+ operationId: roleManagement.entitlementManagement_DeleteResourceNamespaces
parameters:
- - name: unifiedRoleEligibilityScheduleInstance-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilityScheduleInstance'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
- name: If-Match
in: header
description: ETag
@@ -14065,38 +15510,61 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})':
- get:
+ '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions':
+ post:
tags:
- - roleManagement.Functions
- summary: Invoke function filterByCurrentUser
- operationId: roleManagement.directory.roleEligibilityScheduleInstances_filterByCurrentUser
+ - roleManagement.Actions
+ summary: Invoke action importResourceActions
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_importResourceActions
parameters:
- - name: on
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'Usage: on={on}'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
- $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions'
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ format:
+ type: string
+ value:
+ type: string
+ overwriteResourceNamespace:
+ type: boolean
+ default: false
+ additionalProperties:
+ type: object
+ required: true
responses:
'200':
description: Success
content:
application/json:
schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- /roleManagement/directory/roleEligibilitySchedules:
+ x-ms-docs-operation-type: action
+ '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleEligibilitySchedules from roleManagement
- operationId: roleManagement.directory_ListRoleEligibilitySchedules
+ summary: Get resourceActions from roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_ListResourceActions
parameters:
+ - name: unifiedRbacResourceNamespace-id
+ in: path
+ description: 'key: id of unifiedRbacResourceNamespace'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -14114,26 +15582,14 @@ paths:
enum:
- id
- id desc
- - appScopeId
- - appScopeId desc
- - createdDateTime
- - createdDateTime desc
- - createdUsing
- - createdUsing desc
- - directoryScopeId
- - directoryScopeId desc
- - modifiedDateTime
- - modifiedDateTime desc
- - principalId
- - principalId desc
- - roleDefinitionId
- - roleDefinitionId desc
- - status
- - status desc
- - memberType
- - memberType desc
- - scheduleInfo
- - scheduleInfo desc
+ - actionVerb
+ - actionVerb desc
+ - description
+ - description desc
+ - name
+ - name desc
+ - resourceScopeId
+ - resourceScopeId desc
type: string
- name: $select
in: query
@@ -14146,20 +15602,11 @@ paths:
items:
enum:
- id
- - appScopeId
- - createdDateTime
- - createdUsing
- - directoryScopeId
- - modifiedDateTime
- - principalId
- - roleDefinitionId
- - status
- - memberType
- - scheduleInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - actionVerb
+ - description
+ - name
+ - resourceScopeId
+ - resourceScope
type: string
- name: $expand
in: query
@@ -14172,10 +15619,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - resourceScope
type: string
responses:
'200':
@@ -14183,13 +15627,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRoleEligibilitySchedule
+ title: Collection of unifiedRbacResourceAction
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
'@odata.nextLink':
type: string
additionalProperties:
@@ -14203,14 +15647,22 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to roleEligibilitySchedules for roleManagement
- operationId: roleManagement.directory_CreateRoleEligibilitySchedules
+ summary: Create new navigation property to resourceActions for roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_CreateResourceActions
+ parameters:
+ - name: unifiedRbacResourceNamespace-id
+ in: path
+ description: 'key: id of unifiedRbacResourceNamespace'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
required: true
responses:
'201':
@@ -14218,24 +15670,31 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}':
+ '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get roleEligibilitySchedules from roleManagement
- operationId: roleManagement.directory_GetRoleEligibilitySchedules
+ summary: Get resourceActions from roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_GetResourceActions
parameters:
- - name: unifiedRoleEligibilitySchedule-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilitySchedule'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
+ in: path
+ description: 'key: id of unifiedRbacResourceAction'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceAction
- name: $select
in: query
description: Select properties to be returned
@@ -14247,20 +15706,11 @@ paths:
items:
enum:
- id
- - appScopeId
- - createdDateTime
- - createdUsing
- - directoryScopeId
- - modifiedDateTime
- - principalId
- - roleDefinitionId
- - status
- - memberType
- - scheduleInfo
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - actionVerb
+ - description
+ - name
+ - resourceScopeId
+ - resourceScope
type: string
- name: $expand
in: query
@@ -14273,10 +15723,7 @@ paths:
items:
enum:
- '*'
- - appScope
- - directoryScope
- - principal
- - roleDefinition
+ - resourceScope
type: string
responses:
'200':
@@ -14284,46 +15731,42 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
links:
- appScope:
- operationId: roleManagement.directory.RoleEligibilitySchedules.GetAppScope
- parameters:
- unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
- directoryScope:
- operationId: roleManagement.directory.RoleEligibilitySchedules.GetDirectoryScope
- parameters:
- unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
- principal:
- operationId: roleManagement.directory.RoleEligibilitySchedules.GetPrincipal
- parameters:
- unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
- roleDefinition:
- operationId: roleManagement.directory.RoleEligibilitySchedules.GetRoleDefinition
+ resourceScope:
+ operationId: roleManagement.entitlementManagement.resourceNamespaces.ResourceActions.GetResourceScope
parameters:
- unifiedRoleEligibilitySchedule-id: $request.path.unifiedRoleEligibilitySchedule-id
+ unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id
+ unifiedRbacResourceAction-id: $request.path.unifiedRbacResourceAction-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property roleEligibilitySchedules in roleManagement
- operationId: roleManagement.directory_UpdateRoleEligibilitySchedules
+ summary: Update the navigation property resourceActions in roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_UpdateResourceActions
parameters:
- - name: unifiedRoleEligibilitySchedule-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilitySchedule'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
+ in: path
+ description: 'key: id of unifiedRbacResourceAction'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceAction
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
required: true
responses:
'204':
@@ -14334,16 +15777,23 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property roleEligibilitySchedules for roleManagement
- operationId: roleManagement.directory_DeleteRoleEligibilitySchedules
+ summary: Delete navigation property resourceActions for roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces_DeleteResourceActions
parameters:
- - name: unifiedRoleEligibilitySchedule-id
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'key: id of unifiedRoleEligibilitySchedule'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRoleEligibilitySchedule
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
+ in: path
+ description: 'key: id of unifiedRbacResourceAction'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceAction
- name: If-Match
in: header
description: ETag
@@ -14355,38 +15805,27 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/directory/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on})':
+ '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope':
get:
tags:
- - roleManagement.Functions
- summary: Invoke function filterByCurrentUser
- operationId: roleManagement.directory.roleEligibilitySchedules_filterByCurrentUser
+ - roleManagement.rbacApplication
+ summary: Get resourceScope from roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_GetResourceScope
parameters:
- - name: on
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'Usage: on={on}'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
- $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleFilterByCurrentUserOptions'
- responses:
- '200':
- description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule'
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- /roleManagement/entitlementManagement:
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get entitlementManagement from roleManagement
- operationId: roleManagement_GetEntitlementManagement
- parameters:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
+ in: path
+ description: 'key: id of unifiedRbacResourceAction'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: unifiedRbacResourceAction
- name: $select
in: query
description: Select properties to be returned
@@ -14398,15 +15837,9 @@ paths:
items:
enum:
- id
- - resourceNamespaces
- - roleAssignments
- - roleDefinitions
- - roleAssignmentRequests
- - roleAssignmentScheduleInstances
- - roleAssignmentSchedules
- - roleEligibilityRequests
- - roleEligibilityScheduleInstances
- - roleEligibilitySchedules
+ - displayName
+ - scope
+ - type
type: string
- name: $expand
in: query
@@ -14419,15 +15852,6 @@ paths:
items:
enum:
- '*'
- - resourceNamespaces
- - roleAssignments
- - roleDefinitions
- - roleAssignmentRequests
- - roleAssignmentScheduleInstances
- - roleAssignmentSchedules
- - roleEligibilityRequests
- - roleEligibilityScheduleInstances
- - roleEligibilitySchedules
type: string
responses:
'200':
@@ -14435,164 +15859,80 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.rbacApplication'
- links:
- resourceNamespaces:
- operationId: roleManagement.EntitlementManagement.ListResourceNamespaces
- roleAssignments:
- operationId: roleManagement.EntitlementManagement.ListRoleAssignments
- roleDefinitions:
- operationId: roleManagement.EntitlementManagement.ListRoleDefinitions
- roleAssignmentRequests:
- operationId: roleManagement.EntitlementManagement.ListRoleAssignmentRequests
- roleAssignmentScheduleInstances:
- operationId: roleManagement.EntitlementManagement.ListRoleAssignmentScheduleInstances
- roleAssignmentSchedules:
- operationId: roleManagement.EntitlementManagement.ListRoleAssignmentSchedules
- roleEligibilityRequests:
- operationId: roleManagement.EntitlementManagement.ListRoleEligibilityRequests
- roleEligibilityScheduleInstances:
- operationId: roleManagement.EntitlementManagement.ListRoleEligibilityScheduleInstances
- roleEligibilitySchedules:
- operationId: roleManagement.EntitlementManagement.ListRoleEligibilitySchedules
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceScope'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property entitlementManagement in roleManagement
- operationId: roleManagement_UpdateEntitlementManagement
- requestBody:
- description: New navigation property values
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.rbacApplication'
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- delete:
- tags:
- - roleManagement.rbacApplication
- summary: Delete navigation property entitlementManagement for roleManagement
- operationId: roleManagement_DeleteEntitlementManagement
- parameters:
- - name: If-Match
- in: header
- description: ETag
- schema:
- type: string
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/roleManagement/entitlementManagement/microsoft.graph.roleScheduleInstances(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')':
- get:
- tags:
- - roleManagement.Functions
- summary: Invoke function roleScheduleInstances
- operationId: roleManagement.entitlementManagement_roleScheduleInstances
+ summary: Update the navigation property resourceScope in roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_UpdateResourceScope
parameters:
- - name: directoryScopeId
- in: path
- description: 'Usage: directoryScopeId={directoryScopeId}'
- required: true
- schema:
- type: string
- nullable: true
- - name: appScopeId
- in: path
- description: 'Usage: appScopeId={appScopeId}'
- required: true
- schema:
- type: string
- nullable: true
- - name: principalId
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'Usage: principalId={principalId}'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- nullable: true
- - name: roleDefinitionId
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
in: path
- description: 'Usage: roleDefinitionId={roleDefinitionId}'
+ description: 'key: id of unifiedRbacResourceAction'
required: true
schema:
type: string
- nullable: true
+ x-ms-docs-key-type: unifiedRbacResourceAction
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceScope'
+ required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleInstanceBase'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- '/roleManagement/entitlementManagement/microsoft.graph.roleSchedules(directoryScopeId=''{directoryScopeId}'',appScopeId=''{appScopeId}'',principalId=''{principalId}'',roleDefinitionId=''{roleDefinitionId}'')':
- get:
+ x-ms-docs-operation-type: operation
+ delete:
tags:
- - roleManagement.Functions
- summary: Invoke function roleSchedules
- operationId: roleManagement.entitlementManagement_roleSchedules
+ - roleManagement.rbacApplication
+ summary: Delete navigation property resourceScope for roleManagement
+ operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_DeleteResourceScope
parameters:
- - name: directoryScopeId
- in: path
- description: 'Usage: directoryScopeId={directoryScopeId}'
- required: true
- schema:
- type: string
- nullable: true
- - name: appScopeId
+ - name: unifiedRbacResourceNamespace-id
in: path
- description: 'Usage: appScopeId={appScopeId}'
+ description: 'key: id of unifiedRbacResourceNamespace'
required: true
schema:
type: string
- nullable: true
- - name: principalId
+ x-ms-docs-key-type: unifiedRbacResourceNamespace
+ - name: unifiedRbacResourceAction-id
in: path
- description: 'Usage: principalId={principalId}'
+ description: 'key: id of unifiedRbacResourceAction'
required: true
schema:
type: string
- nullable: true
- - name: roleDefinitionId
- in: path
- description: 'Usage: roleDefinitionId={roleDefinitionId}'
- required: true
+ x-ms-docs-key-type: unifiedRbacResourceAction
+ - name: If-Match
+ in: header
+ description: ETag
schema:
type: string
- nullable: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRoleScheduleBase'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- /roleManagement/entitlementManagement/resourceNamespaces:
+ x-ms-docs-operation-type: operation
+ /roleManagement/entitlementManagement/roleAssignmentApprovals:
get:
tags:
- roleManagement.rbacApplication
- summary: Get resourceNamespaces from roleManagement
- operationId: roleManagement.entitlementManagement_ListResourceNamespaces
+ summary: Get roleAssignmentApprovals from roleManagement
+ operationId: roleManagement.entitlementManagement_ListRoleAssignmentApprovals
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
@@ -14611,8 +15951,6 @@ paths:
enum:
- id
- id desc
- - name
- - name desc
type: string
- name: $select
in: query
@@ -14625,8 +15963,7 @@ paths:
items:
enum:
- id
- - name
- - resourceActions
+ - steps
type: string
- name: $expand
in: query
@@ -14639,7 +15976,7 @@ paths:
items:
enum:
- '*'
- - resourceActions
+ - steps
type: string
responses:
'200':
@@ -14647,13 +15984,13 @@ paths:
content:
application/json:
schema:
- title: Collection of unifiedRbacResourceNamespace
+ title: Collection of approval
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
+ $ref: '#/components/schemas/microsoft.graph.approval'
'@odata.nextLink':
type: string
additionalProperties:
@@ -14667,14 +16004,14 @@ paths:
post:
tags:
- roleManagement.rbacApplication
- summary: Create new navigation property to resourceNamespaces for roleManagement
- operationId: roleManagement.entitlementManagement_CreateResourceNamespaces
+ summary: Create new navigation property to roleAssignmentApprovals for roleManagement
+ operationId: roleManagement.entitlementManagement_CreateRoleAssignmentApprovals
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
+ $ref: '#/components/schemas/microsoft.graph.approval'
required: true
responses:
'201':
@@ -14682,24 +16019,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
+ $ref: '#/components/schemas/microsoft.graph.approval'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}':
+ '/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get resourceNamespaces from roleManagement
- operationId: roleManagement.entitlementManagement_GetResourceNamespaces
+ summary: Get roleAssignmentApprovals from roleManagement
+ operationId: roleManagement.entitlementManagement_GetRoleAssignmentApprovals
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
+ x-ms-docs-key-type: approval
- name: $select
in: query
description: Select properties to be returned
@@ -14711,8 +16048,7 @@ paths:
items:
enum:
- id
- - name
- - resourceActions
+ - steps
type: string
- name: $expand
in: query
@@ -14725,7 +16061,7 @@ paths:
items:
enum:
- '*'
- - resourceActions
+ - steps
type: string
responses:
'200':
@@ -14733,34 +16069,34 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
+ $ref: '#/components/schemas/microsoft.graph.approval'
links:
- resourceActions:
- operationId: roleManagement.entitlementManagement.ResourceNamespaces.ListResourceActions
+ steps:
+ operationId: roleManagement.entitlementManagement.RoleAssignmentApprovals.ListSteps
parameters:
- unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id
+ approval-id: $request.path.approval-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property resourceNamespaces in roleManagement
- operationId: roleManagement.entitlementManagement_UpdateResourceNamespaces
+ summary: Update the navigation property roleAssignmentApprovals in roleManagement
+ operationId: roleManagement.entitlementManagement_UpdateRoleAssignmentApprovals
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
+ x-ms-docs-key-type: approval
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
+ $ref: '#/components/schemas/microsoft.graph.approval'
required: true
responses:
'204':
@@ -14771,16 +16107,16 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property resourceNamespaces for roleManagement
- operationId: roleManagement.entitlementManagement_DeleteResourceNamespaces
+ summary: Delete navigation property roleAssignmentApprovals for roleManagement
+ operationId: roleManagement.entitlementManagement_DeleteRoleAssignmentApprovals
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
+ x-ms-docs-key-type: approval
- name: If-Match
in: header
description: ETag
@@ -14792,191 +16128,52 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions':
- post:
- tags:
- - roleManagement.Actions
- summary: Invoke action importResourceActions
- operationId: roleManagement.entitlementManagement.resourceNamespaces_importResourceActions
- parameters:
- - name: unifiedRbacResourceNamespace-id
- in: path
- description: 'key: id of unifiedRbacResourceNamespace'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- requestBody:
- description: Action parameters
- content:
- application/json:
- schema:
- type: object
- properties:
- format:
- type: string
- value:
- type: string
- overwriteResourceNamespace:
- type: boolean
- default: false
- additionalProperties:
- type: object
- required: true
- responses:
- '200':
- description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceNamespace'
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: action
- '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions':
+ '/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps':
get:
tags:
- roleManagement.rbacApplication
- summary: Get resourceActions from roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces_ListResourceActions
+ summary: Get steps from roleManagement
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_ListSteps
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
+ x-ms-docs-key-type: approval
- $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:
- enum:
- - id
- - id desc
- - actionVerb
- - actionVerb desc
- - description
- - description desc
- - name
- - name desc
- - resourceScopeId
- - resourceScopeId desc
- type: string
- - name: $select
- in: query
- description: Select properties to be returned
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - actionVerb
- - description
- - name
- - resourceScopeId
- - resourceScope
- type: string
- - name: $expand
- in: query
- description: Expand related entities
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - '*'
- - resourceScope
- type: string
- responses:
- '200':
- description: Retrieved navigation property
- content:
- application/json:
- schema:
- title: Collection of unifiedRbacResourceAction
- type: object
- properties:
- value:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
- '@odata.nextLink':
- type: string
- additionalProperties:
- type: object
- default:
- $ref: '#/components/responses/error'
- x-ms-pageable:
- nextLinkName: '@odata.nextLink'
- operationName: listMore
- x-ms-docs-operation-type: operation
- post:
- tags:
- - roleManagement.rbacApplication
- summary: Create new navigation property to resourceActions for roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces_CreateResourceActions
- parameters:
- - name: unifiedRbacResourceNamespace-id
- in: path
- description: 'key: id of unifiedRbacResourceNamespace'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- requestBody:
- description: New navigation property
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
- required: true
- responses:
- '201':
- description: Created navigation property.
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}':
- get:
- tags:
- - roleManagement.rbacApplication
- summary: Get resourceActions from roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces_GetResourceActions
- parameters:
- - name: unifiedRbacResourceNamespace-id
- in: path
- description: 'key: id of unifiedRbacResourceNamespace'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
- in: path
- description: 'key: id of unifiedRbacResourceAction'
- required: true
+ - $ref: '#/components/parameters/count'
+ - name: $orderby
+ in: query
+ description: Order items by property values
+ style: form
+ explode: false
schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - id desc
+ - assignedToMe
+ - assignedToMe desc
+ - displayName
+ - displayName desc
+ - justification
+ - justification desc
+ - reviewedBy
+ - reviewedBy desc
+ - reviewedDateTime
+ - reviewedDateTime desc
+ - reviewResult
+ - reviewResult desc
+ - status
+ - status desc
+ type: string
- name: $select
in: query
description: Select properties to be returned
@@ -14988,11 +16185,13 @@ paths:
items:
enum:
- id
- - actionVerb
- - description
- - name
- - resourceScopeId
- - resourceScope
+ - assignedToMe
+ - displayName
+ - justification
+ - reviewedBy
+ - reviewedDateTime
+ - reviewResult
+ - status
type: string
- name: $expand
in: query
@@ -15005,7 +16204,6 @@ paths:
items:
enum:
- '*'
- - resourceScope
type: string
responses:
'200':
@@ -15013,101 +16211,74 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
- links:
- resourceScope:
- operationId: roleManagement.entitlementManagement.resourceNamespaces.ResourceActions.GetResourceScope
- parameters:
- unifiedRbacResourceNamespace-id: $request.path.unifiedRbacResourceNamespace-id
- unifiedRbacResourceAction-id: $request.path.unifiedRbacResourceAction-id
+ title: Collection of approvalStep
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
default:
$ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
x-ms-docs-operation-type: operation
- patch:
+ post:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property resourceActions in roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces_UpdateResourceActions
+ summary: Create new navigation property to steps for roleManagement
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_CreateSteps
parameters:
- - name: unifiedRbacResourceNamespace-id
- in: path
- description: 'key: id of unifiedRbacResourceNamespace'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceAction'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
+ x-ms-docs-key-type: approval
requestBody:
- description: New navigation property values
+ description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceAction'
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
required: true
responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- delete:
- tags:
- - roleManagement.rbacApplication
- summary: Delete navigation property resourceActions for roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces_DeleteResourceActions
- parameters:
- - name: unifiedRbacResourceNamespace-id
- in: path
- description: 'key: id of unifiedRbacResourceNamespace'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
- in: path
- description: 'key: id of unifiedRbacResourceAction'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
- - name: If-Match
- in: header
- description: ETag
- schema:
- type: string
- responses:
- '204':
- description: Success
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope':
+ '/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}':
get:
tags:
- roleManagement.rbacApplication
- summary: Get resourceScope from roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_GetResourceScope
+ summary: Get steps from roleManagement
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_GetSteps
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
in: path
- description: 'key: id of unifiedRbacResourceAction'
+ description: 'key: id of approvalStep'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
+ x-ms-docs-key-type: approvalStep
- name: $select
in: query
description: Select properties to be returned
@@ -15119,9 +16290,13 @@ paths:
items:
enum:
- id
+ - assignedToMe
- displayName
- - scope
- - type
+ - justification
+ - reviewedBy
+ - reviewedDateTime
+ - reviewResult
+ - status
type: string
- name: $expand
in: query
@@ -15141,36 +16316,36 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceScope'
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- roleManagement.rbacApplication
- summary: Update the navigation property resourceScope in roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_UpdateResourceScope
+ summary: Update the navigation property steps in roleManagement
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_UpdateSteps
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
in: path
- description: 'key: id of unifiedRbacResourceAction'
+ description: 'key: id of approvalStep'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
+ x-ms-docs-key-type: approvalStep
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.unifiedRbacResourceScope'
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
required: true
responses:
'204':
@@ -15181,23 +16356,23 @@ paths:
delete:
tags:
- roleManagement.rbacApplication
- summary: Delete navigation property resourceScope for roleManagement
- operationId: roleManagement.entitlementManagement.resourceNamespaces.resourceActions_DeleteResourceScope
+ summary: Delete navigation property steps for roleManagement
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_DeleteSteps
parameters:
- - name: unifiedRbacResourceNamespace-id
+ - name: approval-id
in: path
- description: 'key: id of unifiedRbacResourceNamespace'
+ description: 'key: id of approval'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceNamespace
- - name: unifiedRbacResourceAction-id
+ x-ms-docs-key-type: approval
+ - name: approvalStep-id
in: path
- description: 'key: id of unifiedRbacResourceAction'
+ description: 'key: id of approvalStep'
required: true
schema:
type: string
- x-ms-docs-key-type: unifiedRbacResourceAction
+ x-ms-docs-key-type: approvalStep
- name: If-Match
in: header
description: ETag
@@ -15209,6 +16384,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/roleManagement/entitlementManagement/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - roleManagement.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: roleManagement.entitlementManagement.roleAssignmentApprovals_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.approvalFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approval'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
/roleManagement/entitlementManagement/roleAssignmentRequests:
get:
tags:
@@ -21010,10 +22210,6 @@ components:
type: string
description: The Import Id of the Windows autopilot device.
nullable: true
- orderIdentifier:
- type: string
- description: Order Id of the Windows autopilot device. - Deprecate
- nullable: true
productKey:
type: string
description: Product Key of the Windows autopilot device.
@@ -21027,6 +22223,47 @@ components:
additionalProperties:
type: object
description: Imported windows autopilot devices.
+ microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userExperienceAnalyticsNotAutopilotReadyDevice
+ type: object
+ properties:
+ autoPilotProfileAssigned:
+ type: boolean
+ description: The intune device's autopilotProfileAssigned.
+ autoPilotRegistered:
+ type: boolean
+ description: The intune device's autopilotRegistered.
+ azureAdJoinType:
+ type: string
+ description: The intune device's azure Ad joinType.
+ nullable: true
+ azureAdRegistered:
+ $ref: '#/components/schemas/microsoft.graph.azureAdRegisteredState'
+ deviceName:
+ type: string
+ description: The intune device's name.
+ nullable: true
+ managedBy:
+ type: string
+ description: The intune device's managed by.
+ nullable: true
+ manufacturer:
+ type: string
+ description: The intune device's manufacturer.
+ nullable: true
+ model:
+ type: string
+ description: The intune device's model.
+ nullable: true
+ serialNumber:
+ type: string
+ description: The intune device's serial number.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The user experience analytics Device not windows autopilot ready.
microsoft.graph.windowsAutopilotDeploymentProfile:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -21101,6 +22338,10 @@ components:
description: Addressable user name.
nullable: true
azureActiveDirectoryDeviceId:
+ type: string
+ description: AAD Device ID - to be deprecated
+ nullable: true
+ azureAdDeviceId:
type: string
description: AAD Device ID
nullable: true
@@ -21140,10 +22381,6 @@ components:
type: string
description: Model name of the Windows autopilot device.
nullable: true
- orderIdentifier:
- type: string
- description: Order Identifier of the Windows autopilot device - Deprecated
- nullable: true
productKey:
type: string
description: Product Key of the Windows autopilot device.
@@ -21228,6 +22465,10 @@ components:
type: string
description: The date time that the profile was created.
format: date-time
+ deployableContentDisplayName:
+ type: string
+ description: Friendly display name of the quality update profile deployable content
+ nullable: true
description:
type: string
description: The description of the profile which is specified by the user.
@@ -21548,6 +22789,10 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
+ roleAssignmentApprovals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approval'
roleAssignmentRequests:
type: array
items:
@@ -21646,6 +22891,62 @@ components:
$ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition'
additionalProperties:
type: object
+ microsoft.graph.approval:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: approval
+ type: object
+ properties:
+ steps:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approvalStep'
+ additionalProperties:
+ type: object
+ microsoft.graph.approvalStep:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: approvalStep
+ type: object
+ properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
+ displayName:
+ type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
+ nullable: true
+ justification:
+ type: string
+ description: The justification associated with the approval step decision.
+ nullable: true
+ reviewedBy:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ reviewedDateTime:
+ 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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
+ format: date-time
+ nullable: true
+ reviewResult:
+ type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.approvalFilterByCurrentUserOptions:
+ title: approvalFilterByCurrentUserOptions
+ enum:
+ - target
+ - createdBy
+ - approver
+ - unknownFutureValue
+ type: string
microsoft.graph.unifiedRoleAssignmentRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.request'
@@ -22188,6 +23489,13 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.azureAdRegisteredState:
+ title: azureAdRegisteredState
+ enum:
+ - no
+ - yes
+ - unknown
+ type: string
microsoft.graph.windowsAutopilotDeviceType:
title: windowsAutopilotDeviceType
enum:
@@ -22307,6 +23615,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.identity:
+ title: identity
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may 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: Unique identifier for the identity.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.request:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -22346,7 +23668,7 @@ components:
startDateTime:
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 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''.'
+ description: '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
additionalProperties:
@@ -22432,7 +23754,7 @@ components:
endDateTime:
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 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''.'
+ description: '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
type:
@@ -22472,20 +23794,6 @@ components:
description: The structure of this object is service-specific
additionalProperties:
type: object
- microsoft.graph.identity:
- title: identity
- type: object
- properties:
- displayName:
- type: string
- description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may 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: Unique identifier for the identity.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.expirationPatternType:
title: expirationPatternType
enum:
diff --git a/openApiDocs/beta/DeviceManagement.Functions.yml b/openApiDocs/beta/DeviceManagement.Functions.yml
index 3eab5260100..8aee1492be0 100644
--- a/openApiDocs/beta/DeviceManagement.Functions.yml
+++ b/openApiDocs/beta/DeviceManagement.Functions.yml
@@ -23,6 +23,22 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ /deviceManagement/assignmentFilters/microsoft.graph.getState():
+ get:
+ tags:
+ - deviceManagement.Functions
+ summary: Invoke function getState
+ operationId: deviceManagement.assignmentFilters_getState
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.assignmentFilterState'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/deviceManagement/auditEvents/microsoft.graph.getAuditActivityTypes(category=''{category}'')':
get:
tags:
@@ -1279,6 +1295,22 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ /deviceManagement/microsoft.graph.userExperienceAnalyticsSummarizeWorkFromAnywhereDevices():
+ get:
+ tags:
+ - deviceManagement.Functions
+ summary: Invoke function userExperienceAnalyticsSummarizeWorkFromAnywhereDevices
+ operationId: deviceManagement_userExperienceAnalyticsSummarizeWorkFromAnywhereDevices
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevicesSummary'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/deviceManagement/microsoft.graph.verifyWindowsEnrollmentAutoDiscovery(domainName=''{domainName}'')':
get:
tags:
@@ -1590,6 +1622,16 @@ paths:
x-ms-docs-operation-type: function
components:
schemas:
+ microsoft.graph.assignmentFilterState:
+ title: assignmentFilterState
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicator to if AssignmentFilter is enabled or disabled.
+ additionalProperties:
+ type: object
+ description: Represents result of GetState API.
microsoft.graph.deviceCompliancePolicySettingState:
title: deviceCompliancePolicySettingState
type: object
@@ -2078,6 +2120,19 @@ components:
additionalProperties:
type: object
description: The suggestedEnrollmentLimit resource represents the suggested enrollment limit when given an enrollment type.
+ microsoft.graph.userExperienceAnalyticsWorkFromAnywhereDevicesSummary:
+ title: userExperienceAnalyticsWorkFromAnywhereDevicesSummary
+ type: object
+ properties:
+ autopilotDevicesSummary:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsAutopilotDevicesSummary'
+ cloudManagementDevicesSummary:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsCloudManagementDevicesSummary'
+ windows10DevicesSummary:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsWindows10DevicesSummary'
+ additionalProperties:
+ type: object
+ description: The user experience analytics Work From Anywhere metrics devices summary.
microsoft.graph.userExperienceAnalyticsSummarizedBy:
title: userExperienceAnalyticsSummarizedBy
enum:
@@ -2445,6 +2500,63 @@ components:
additionalProperties:
type: object
description: Contains the properties for auto-assigning a Role Scope Tag to a group to be applied to Devices.
+ microsoft.graph.userExperienceAnalyticsAutopilotDevicesSummary:
+ title: userExperienceAnalyticsAutopilotDevicesSummary
+ type: object
+ properties:
+ devicesNotAutopilotRegistered:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The count of intune devices that are not autopilot registerd.
+ format: int32
+ devicesWithoutAutopilotProfileAssigned:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The count of intune devices not autopilot profile assigned.
+ format: int32
+ additionalProperties:
+ type: object
+ description: The user experience analytics summary of Devices not windows autopilot ready.
+ microsoft.graph.userExperienceAnalyticsCloudManagementDevicesSummary:
+ title: userExperienceAnalyticsCloudManagementDevicesSummary
+ type: object
+ properties:
+ coManagedDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Total number of co-managed devices.
+ format: int32
+ intuneDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The count of intune devices that are not autopilot registerd.
+ format: int32
+ tenantAttachDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Total count of tenant attach devices.
+ format: int32
+ additionalProperties:
+ type: object
+ description: The user experience work from anywhere Cloud management devices summary.
+ microsoft.graph.userExperienceAnalyticsWindows10DevicesSummary:
+ title: userExperienceAnalyticsWindows10DevicesSummary
+ type: object
+ properties:
+ unsupportedOSversionDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The count of Windows 10 devices that have unsupported OS versions.
+ format: int32
+ additionalProperties:
+ type: object
+ description: The user experience analytics work from anywhere Windows 10 devices summary.
microsoft.graph.diskType:
title: diskType
enum:
diff --git a/openApiDocs/beta/DeviceManagement.yml b/openApiDocs/beta/DeviceManagement.yml
index 60700c48be3..6d070d0377a 100644
--- a/openApiDocs/beta/DeviceManagement.yml
+++ b/openApiDocs/beta/DeviceManagement.yml
@@ -49,6 +49,7 @@ paths:
- androidManagedStoreAppConfigurationSchemas
- auditEvents
- assignmentFilters
+ - chromeOSOnboardingSettings
- termsAndConditions
- advancedThreatProtectionOnboardingStateSummary
- cartToClassAssociations
@@ -114,6 +115,7 @@ paths:
- userExperienceAnalyticsDevicesWithoutCloudIdentity
- userExperienceAnalyticsImpactingProcess
- userExperienceAnalyticsMetricHistory
+ - userExperienceAnalyticsNotAutopilotReadyDevice
- userExperienceAnalyticsOverview
- userExperienceAnalyticsRegressionSummary
- userExperienceAnalyticsRemoteConnection
@@ -183,6 +185,7 @@ paths:
- androidManagedStoreAppConfigurationSchemas
- auditEvents
- assignmentFilters
+ - chromeOSOnboardingSettings
- termsAndConditions
- advancedThreatProtectionOnboardingStateSummary
- cartToClassAssociations
@@ -248,6 +251,7 @@ paths:
- userExperienceAnalyticsDevicesWithoutCloudIdentity
- userExperienceAnalyticsImpactingProcess
- userExperienceAnalyticsMetricHistory
+ - userExperienceAnalyticsNotAutopilotReadyDevice
- userExperienceAnalyticsOverview
- userExperienceAnalyticsRegressionSummary
- userExperienceAnalyticsRemoteConnection
@@ -323,6 +327,8 @@ paths:
operationId: deviceManagement.ListAuditEvents
assignmentFilters:
operationId: deviceManagement.ListAssignmentFilters
+ chromeOSOnboardingSettings:
+ operationId: deviceManagement.ListChromeOSOnboardingSettings
termsAndConditions:
operationId: deviceManagement.ListTermsAndConditions
advancedThreatProtectionOnboardingStateSummary:
@@ -453,6 +459,8 @@ paths:
operationId: deviceManagement.ListUserExperienceAnalyticsImpactingProcess
userExperienceAnalyticsMetricHistory:
operationId: deviceManagement.ListUserExperienceAnalyticsMetricHistory
+ userExperienceAnalyticsNotAutopilotReadyDevice:
+ operationId: deviceManagement.ListUserExperienceAnalyticsNotAutopilotReadyDevice
userExperienceAnalyticsOverview:
operationId: deviceManagement.GetUserExperienceAnalyticsOverview
userExperienceAnalyticsRegressionSummary:
@@ -2216,6 +2224,8 @@ paths:
- azureADRegistered desc
- chassisType
- chassisType desc
+ - chromeOSDeviceInfo
+ - chromeOSDeviceInfo desc
- complianceGracePeriodExpirationDateTime
- complianceGracePeriodExpirationDateTime desc
- complianceState
@@ -2372,6 +2382,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -2551,6 +2562,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -5142,6 +5154,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5213,6 +5226,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5433,6 +5447,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5504,6 +5519,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5608,6 +5624,11 @@ paths:
parameters:
managedDevice-id: $request.path.managedDevice-id
user-id: $request.path.user-id
+ oauth2PermissionGrants:
+ operationId: deviceManagement.comanagedDevices.Users.ListOauth2PermissionGrants
+ parameters:
+ managedDevice-id: $request.path.managedDevice-id
+ user-id: $request.path.user-id
ownedDevices:
operationId: deviceManagement.comanagedDevices.Users.ListOwnedDevices
parameters:
@@ -7006,6 +7027,8 @@ paths:
- azureADRegistered desc
- chassisType
- chassisType desc
+ - chromeOSDeviceInfo
+ - chromeOSDeviceInfo desc
- complianceGracePeriodExpirationDateTime
- complianceGracePeriodExpirationDateTime desc
- complianceState
@@ -7162,6 +7185,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -7333,6 +7357,8 @@ paths:
- azureADRegistered desc
- chassisType
- chassisType desc
+ - chromeOSDeviceInfo
+ - chromeOSDeviceInfo desc
- complianceGracePeriodExpirationDateTime
- complianceGracePeriodExpirationDateTime desc
- complianceState
@@ -13569,6 +13595,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -14790,6 +14817,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -16051,6 +16079,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -17209,6 +17238,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -18470,6 +18500,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -24585,6 +24616,8 @@ paths:
- azureADRegistered desc
- chassisType
- chassisType desc
+ - chromeOSDeviceInfo
+ - chromeOSDeviceInfo desc
- complianceGracePeriodExpirationDateTime
- complianceGracePeriodExpirationDateTime desc
- complianceState
@@ -24741,6 +24774,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -24920,6 +24954,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -27511,6 +27546,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -27582,6 +27618,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -27802,6 +27839,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -27873,6 +27911,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -27977,6 +28016,11 @@ paths:
parameters:
managedDevice-id: $request.path.managedDevice-id
user-id: $request.path.user-id
+ oauth2PermissionGrants:
+ operationId: deviceManagement.managedDevices.Users.ListOauth2PermissionGrants
+ parameters:
+ managedDevice-id: $request.path.managedDevice-id
+ user-id: $request.path.user-id
ownedDevices:
operationId: deviceManagement.managedDevices.Users.ListOwnedDevices
parameters:
@@ -36193,6 +36237,7 @@ paths:
- deviceBootPerformanceMetrics
- rebootAnalyticsMetrics
- resourcePerformanceMetrics
+ - workFromAnywhereMetrics
type: string
- name: $expand
in: query
@@ -36210,6 +36255,7 @@ paths:
- deviceBootPerformanceMetrics
- rebootAnalyticsMetrics
- resourcePerformanceMetrics
+ - workFromAnywhereMetrics
type: string
responses:
'200':
@@ -36289,6 +36335,7 @@ paths:
- deviceBootPerformanceMetrics
- rebootAnalyticsMetrics
- resourcePerformanceMetrics
+ - workFromAnywhereMetrics
type: string
- name: $expand
in: query
@@ -36306,6 +36353,7 @@ paths:
- deviceBootPerformanceMetrics
- rebootAnalyticsMetrics
- resourcePerformanceMetrics
+ - workFromAnywhereMetrics
type: string
responses:
'200':
@@ -36335,6 +36383,10 @@ paths:
operationId: deviceManagement.UserExperienceAnalyticsBaselines.GetResourcePerformanceMetrics
parameters:
userExperienceAnalyticsBaseline-id: $request.path.userExperienceAnalyticsBaseline-id
+ workFromAnywhereMetrics:
+ operationId: deviceManagement.UserExperienceAnalyticsBaselines.GetWorkFromAnywhereMetrics
+ parameters:
+ userExperienceAnalyticsBaseline-id: $request.path.userExperienceAnalyticsBaseline-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -37073,6 +37125,143 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics':
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsBaseline
+ summary: Get workFromAnywhereMetrics from deviceManagement
+ operationId: deviceManagement.userExperienceAnalyticsBaselines_GetWorkFromAnywhereMetrics
+ parameters:
+ - name: userExperienceAnalyticsBaseline-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsBaseline'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsBaseline
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - insights
+ - metricValues
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - metricValues
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsCategory'
+ links:
+ metricValues:
+ operationId: deviceManagement.userExperienceAnalyticsBaselines.WorkFromAnywhereMetrics.ListMetricValues
+ parameters:
+ userExperienceAnalyticsBaseline-id: $request.path.userExperienceAnalyticsBaseline-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref':
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsBaseline
+ summary: Get ref of workFromAnywhereMetrics from deviceManagement
+ operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRefWorkFromAnywhereMetrics
+ parameters:
+ - name: userExperienceAnalyticsBaseline-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsBaseline'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsBaseline
+ responses:
+ '200':
+ description: Retrieved navigation property link
+ content:
+ application/json:
+ schema:
+ type: string
+ links:
+ metricValues:
+ operationId: deviceManagement.userExperienceAnalyticsBaselines.WorkFromAnywhereMetrics.ListMetricValues
+ parameters:
+ userExperienceAnalyticsBaseline-id: $request.path.userExperienceAnalyticsBaseline-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - deviceManagement.userExperienceAnalyticsBaseline
+ summary: Update the ref of navigation property workFromAnywhereMetrics in deviceManagement
+ operationId: deviceManagement.userExperienceAnalyticsBaselines_SetRefWorkFromAnywhereMetrics
+ parameters:
+ - name: userExperienceAnalyticsBaseline-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsBaseline'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsBaseline
+ requestBody:
+ description: New navigation property ref values
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - deviceManagement.userExperienceAnalyticsBaseline
+ summary: Delete ref of navigation property workFromAnywhereMetrics for deviceManagement
+ operationId: deviceManagement.userExperienceAnalyticsBaselines_DeleteRefWorkFromAnywhereMetrics
+ parameters:
+ - name: userExperienceAnalyticsBaseline-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsBaseline'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsBaseline
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/deviceManagement/userExperienceAnalyticsCategories:
get:
tags:
@@ -39556,6 +39745,234 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice:
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement
+ operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice
+ 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:
+ enum:
+ - id
+ - id desc
+ - autoPilotProfileAssigned
+ - autoPilotProfileAssigned desc
+ - autoPilotRegistered
+ - autoPilotRegistered desc
+ - azureAdJoinType
+ - azureAdJoinType desc
+ - azureAdRegistered
+ - azureAdRegistered desc
+ - deviceName
+ - deviceName desc
+ - managedBy
+ - managedBy desc
+ - manufacturer
+ - manufacturer desc
+ - model
+ - model desc
+ - serialNumber
+ - serialNumber desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - autoPilotProfileAssigned
+ - autoPilotRegistered
+ - azureAdJoinType
+ - azureAdRegistered
+ - deviceName
+ - managedBy
+ - manufacturer
+ - model
+ - serialNumber
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of userExperienceAnalyticsNotAutopilotReadyDevice
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Create new navigation property to userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement
+ operationId: deviceManagement_CreateUserExperienceAnalyticsNotAutopilotReadyDevice
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}':
+ get:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement
+ operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - autoPilotProfileAssigned
+ - autoPilotRegistered
+ - azureAdJoinType
+ - azureAdRegistered
+ - deviceName
+ - managedBy
+ - manufacturer
+ - model
+ - serialNumber
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Update the navigation property userExperienceAnalyticsNotAutopilotReadyDevice in deviceManagement
+ operationId: deviceManagement_UpdateUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice
+ summary: Delete navigation property userExperienceAnalyticsNotAutopilotReadyDevice for deviceManagement
+ operationId: deviceManagement_DeleteUserExperienceAnalyticsNotAutopilotReadyDevice
+ parameters:
+ - name: userExperienceAnalyticsNotAutopilotReadyDevice-id
+ in: path
+ description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/deviceManagement/userExperienceAnalyticsOverview:
get:
tags:
@@ -41965,6 +42382,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter'
description: The list of assignment filters
+ chromeOSOnboardingSettings:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings'
+ description: Collection of ChromeOSOnboardingSettings settings associated with account.
termsAndConditions:
type: array
items:
@@ -42260,6 +42682,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsMetricHistory'
description: User experience analytics metric history
+ userExperienceAnalyticsNotAutopilotReadyDevice:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice'
+ description: User experience analytics devices not Windows Autopilot ready.
userExperienceAnalyticsOverview:
$ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsOverview'
userExperienceAnalyticsRegressionSummary:
@@ -42893,6 +43320,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -43513,7 +43945,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -43530,7 +43962,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -43621,7 +44053,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -43666,7 +44098,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -43778,12 +44210,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -43858,6 +44290,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -45363,7 +45799,7 @@ components:
lastSyncDateTime:
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 time that Intune Management Extension synced with Intune
+ description: The last time that Intune Managment Extension synced with Intune
format: date-time
postRemediationDetectionScriptError:
type: string
@@ -47607,6 +48043,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsCategory'
resourcePerformanceMetrics:
$ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsCategory'
+ workFromAnywhereMetrics:
+ $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsCategory'
additionalProperties:
type: object
description: The user experience analytics baseline entity contains baseline values against which to compare the user experience analytics scores.
@@ -47933,6 +48371,47 @@ components:
additionalProperties:
type: object
description: The user experience analytics top impacting process entity.
+ microsoft.graph.userExperienceAnalyticsNotAutopilotReadyDevice:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userExperienceAnalyticsNotAutopilotReadyDevice
+ type: object
+ properties:
+ autoPilotProfileAssigned:
+ type: boolean
+ description: The intune device's autopilotProfileAssigned.
+ autoPilotRegistered:
+ type: boolean
+ description: The intune device's autopilotRegistered.
+ azureAdJoinType:
+ type: string
+ description: The intune device's azure Ad joinType.
+ nullable: true
+ azureAdRegistered:
+ $ref: '#/components/schemas/microsoft.graph.azureAdRegisteredState'
+ deviceName:
+ type: string
+ description: The intune device's name.
+ nullable: true
+ managedBy:
+ type: string
+ description: The intune device's managed by.
+ nullable: true
+ manufacturer:
+ type: string
+ description: The intune device's manufacturer.
+ nullable: true
+ model:
+ type: string
+ description: The intune device's model.
+ nullable: true
+ serialNumber:
+ type: string
+ description: The intune device's serial number.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The user experience analytics Device not windows autopilot ready.
microsoft.graph.userExperienceAnalyticsOverview:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -48743,6 +49222,32 @@ components:
additionalProperties:
type: object
description: A class containing the properties for Audit Event.
+ microsoft.graph.chromeOSOnboardingSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: chromeOSOnboardingSettings
+ type: object
+ properties:
+ lastDirectorySyncDateTime:
+ 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 ChromebookTenant's LastDirectorySyncDateTime
+ format: date-time
+ nullable: true
+ 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 ChromebookTenant's LastModifiedDateTime
+ format: date-time
+ onboardingStatus:
+ $ref: '#/components/schemas/microsoft.graph.onboardingStatus'
+ ownerUserPrincipalName:
+ type: string
+ description: The ChromebookTenant's OwnerUserPrincipalName
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Entity that represents a Chromebook tenant settings
microsoft.graph.termsAndConditions:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -49202,6 +49707,8 @@ components:
type: string
description: Item Version
nullable: true
+ visibility:
+ $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingVisibility'
additionalProperties:
type: object
microsoft.graph.complianceManagementPartner:
@@ -49962,10 +50469,6 @@ components:
type: string
description: The Import Id of the Windows autopilot device.
nullable: true
- orderIdentifier:
- type: string
- description: Order Id of the Windows autopilot device. - Deprecate
- nullable: true
productKey:
type: string
description: Product Key of the Windows autopilot device.
@@ -50053,6 +50556,10 @@ components:
description: Addressable user name.
nullable: true
azureActiveDirectoryDeviceId:
+ type: string
+ description: AAD Device ID - to be deprecated
+ nullable: true
+ azureAdDeviceId:
type: string
description: AAD Device ID
nullable: true
@@ -50092,10 +50599,6 @@ components:
type: string
description: Model name of the Windows autopilot device.
nullable: true
- orderIdentifier:
- type: string
- description: Order Identifier of the Windows autopilot device - Deprecated
- nullable: true
productKey:
type: string
description: Product Key of the Windows autopilot device.
@@ -50767,6 +51270,10 @@ components:
type: string
description: The date time that the profile was created.
format: date-time
+ deployableContentDisplayName:
+ type: string
+ description: Friendly display name of the quality update profile deployable content
+ nullable: true
description:
type: string
description: The description of the profile which is specified by the user.
@@ -50812,6 +51319,10 @@ components:
type: string
description: The date time that the profile was created.
format: date-time
+ deployableContentDisplayName:
+ type: string
+ description: Friendly display name of the quality update profile deployable content
+ nullable: true
description:
type: string
description: The description of the profile which is specified by the user.
@@ -50826,6 +51337,10 @@ components:
type: string
description: The date time that the profile was last modified.
format: date-time
+ releaseDateDisplayName:
+ type: string
+ description: Friendly release date to display for a Quality Update release
+ nullable: true
roleScopeTagIds:
type: array
items:
@@ -51063,11 +51578,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.complianceStatus:
title: complianceStatus
@@ -51314,6 +51830,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -52089,7 +52627,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -52124,7 +52662,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -52451,12 +52989,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -52466,16 +53004,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -52508,6 +53046,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -52541,15 +53117,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -52561,11 +53137,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -52573,11 +53149,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -52733,7 +53309,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -52868,7 +53444,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -53057,7 +53633,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -53071,7 +53647,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -53115,7 +53691,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -53124,7 +53700,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -53164,7 +53740,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -53197,26 +53773,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -53229,7 +53805,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -53514,7 +54090,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -53527,7 +54103,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -53788,6 +54364,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -53813,6 +54390,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -53832,20 +54411,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -53869,7 +54453,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -53877,7 +54461,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -53926,13 +54510,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -54194,6 +54778,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -54442,13 +55028,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -54457,7 +55043,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -54497,6 +55083,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -54516,7 +55103,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -54538,12 +55125,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -54553,10 +55140,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -54568,12 +55156,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -54583,7 +55174,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -54644,7 +55235,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -54710,6 +55301,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -54817,6 +55410,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -54836,7 +55434,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -54877,8 +55475,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -54916,6 +55512,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -55771,6 +56369,13 @@ components:
- bootError
- update
type: string
+ microsoft.graph.azureAdRegisteredState:
+ title: azureAdRegisteredState
+ enum:
+ - no
+ - yes
+ - unknown
+ type: string
microsoft.graph.applicationType:
title: applicationType
enum:
@@ -56045,7 +56650,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 cloud PC''s last modified 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''.'
+ description: 'The cloud PC''s last modified 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 is 2014-01-01T00:00:00Z.'
format: date-time
managedDeviceId:
type: string
@@ -56276,6 +56881,14 @@ components:
additionalProperties:
type: object
description: A class containing the properties for Audit Resource.
+ microsoft.graph.onboardingStatus:
+ title: onboardingStatus
+ enum:
+ - unknown
+ - inprogress
+ - onboarded
+ - failed
+ type: string
microsoft.graph.termsAndConditionsAcceptanceStatus:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -56498,6 +57111,13 @@ components:
- multiheaderGrid
- contextPane
type: string
+ microsoft.graph.deviceManagementConfigurationSettingVisibility:
+ title: deviceManagementConfigurationSettingVisibility
+ enum:
+ - none
+ - settingsCatalog
+ - template
+ type: string
microsoft.graph.complianceManagementPartnerAssignment:
title: complianceManagementPartnerAssignment
type: object
@@ -56637,7 +57257,7 @@ components:
lastSyncDateTime:
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 time that Intune Management Extension synced with Intune
+ description: The last time that Intune Managment Extension synced with Intune
format: date-time
scriptError:
type: string
@@ -58016,7 +58636,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -58177,13 +58797,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -58322,7 +58942,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -58369,7 +58989,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 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'''
+ description: '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
name:
@@ -58568,18 +59188,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -58617,7 +59242,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -58657,7 +59282,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -59185,6 +59810,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -59208,6 +59835,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -59396,12 +60025,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -59415,6 +60047,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -59449,6 +60082,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -59469,6 +60103,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -59482,6 +60117,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -59497,6 +60133,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -59506,10 +60143,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -59575,12 +60214,39 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.appConsentRequestScope:
title: appConsentRequestScope
type: object
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -59592,6 +60258,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -59603,36 +60270,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -59649,7 +60319,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -59664,16 +60334,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -59696,7 +60376,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -59716,7 +60396,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -59913,7 +60593,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -59974,7 +60654,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -59986,7 +60666,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -59994,7 +60674,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -60035,7 +60715,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -60074,6 +60754,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -60160,7 +60850,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -60194,7 +60884,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -61022,6 +61712,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -61119,6 +61810,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -61166,6 +61869,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -61284,7 +61988,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -61435,11 +62139,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -61470,7 +62175,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -61499,15 +62204,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -61660,99 +62368,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -61881,6 +62496,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -62084,7 +62792,7 @@ components:
endDateTime:
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 end time of the connection health check. 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''.'
+ description: 'The end time of the connection health check. 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
healthChecks:
type: array
@@ -62094,7 +62802,7 @@ components:
startDateTime:
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 start time of the connection health check. 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''.'
+ description: 'The start time of the connection health check. 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
additionalProperties:
type: object
@@ -62609,7 +63317,7 @@ 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 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''.'
+ description: '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
message:
@@ -62888,7 +63596,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -63466,6 +64174,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -63645,6 +64364,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -63805,9 +64535,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -64006,6 +64738,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -64083,9 +64816,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -64155,13 +64890,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -64173,18 +64911,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -64204,9 +64947,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -64315,6 +65060,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.request:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -64359,6 +65182,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -64370,10 +65211,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -64713,6 +65562,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -64720,6 +65570,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -64733,7 +65584,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -64741,7 +65592,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 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'''
+ description: '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
additionalProperties:
@@ -64780,7 +65631,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -64848,7 +65699,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -65188,6 +66039,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -65258,6 +66133,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -65266,6 +66143,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -65291,6 +66169,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -65329,9 +66211,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -65393,7 +66277,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -65404,19 +66288,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -65448,6 +66322,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.operationStatus:
title: operationStatus
enum:
@@ -65473,7 +66431,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -65632,13 +66590,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -65666,90 +66624,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.wellknownListName:
title: wellknownListName
enum:
@@ -66149,6 +67023,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -66161,6 +67043,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -66469,6 +67363,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewApplyAction:
title: accessReviewApplyAction
type: object
@@ -66744,6 +67736,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -66849,6 +67842,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -66857,6 +67872,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -66872,6 +67895,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -66915,6 +67951,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -67082,21 +68150,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -67143,6 +68196,15 @@ components:
- permissionCheckUnknownError
- internalServerUnknownError
type: string
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -67316,6 +68378,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.insightIdentity:
title: insightIdentity
type: object
@@ -67384,7 +68484,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -67394,7 +68494,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Devices.CloudPrint.yml b/openApiDocs/beta/Devices.CloudPrint.yml
index e10157fd7d2..25894263ef7 100644
--- a/openApiDocs/beta/Devices.CloudPrint.yml
+++ b/openApiDocs/beta/Devices.CloudPrint.yml
@@ -2956,6 +2956,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -3027,6 +3028,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5171,6 +5173,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -5242,6 +5245,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -6625,6 +6629,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.printOperation'
+ description: The list of print long running operations.
printers:
type: array
items:
@@ -6650,6 +6655,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.printTaskDefinition'
+ description: List of abstract definition for a task that can be triggered when various events occur within Universal Print.
additionalProperties:
type: object
microsoft.graph.printConnector:
@@ -6721,6 +6727,7 @@ components:
lastSeenDateTime:
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 most recent dateTimeOffset when a printer interacted with Universal Print. Read-only.
format: date-time
nullable: true
registeredDateTime:
@@ -7054,7 +7061,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -7068,7 +7075,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -7112,7 +7119,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -7121,7 +7128,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -7161,7 +7168,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -7194,26 +7201,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -7226,7 +7233,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -7380,7 +7387,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -7397,7 +7404,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -7488,7 +7495,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -7533,7 +7540,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -7645,12 +7652,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -7725,6 +7732,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -8177,17 +8188,21 @@ components:
$ref: '#/components/schemas/microsoft.graph.printerDefaults'
displayName:
type: string
+ description: The name of the printer/printerShare.
nullable: true
isAcceptingJobs:
type: boolean
+ description: Whether the printer/printerShare is currently accepting new print jobs.
nullable: true
location:
$ref: '#/components/schemas/microsoft.graph.printerLocation'
manufacturer:
type: string
+ description: The manufacturer of the printer/printerShare.
nullable: true
model:
type: string
+ description: The model name of the printer/printerShare.
nullable: true
name:
type: string
@@ -8198,6 +8213,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.printJob'
+ description: The list of jobs that are queued for printing by the printer/printerShare.
additionalProperties:
type: object
microsoft.graph.printColorMode:
@@ -8500,12 +8516,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -8515,16 +8531,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -8569,18 +8585,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -8623,15 +8644,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -8643,11 +8664,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -8655,11 +8676,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -8788,7 +8809,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -8882,7 +8903,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -8922,7 +8943,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -9037,6 +9058,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -9062,6 +9084,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -9182,7 +9206,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -9223,8 +9247,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -9262,6 +9284,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.signInActivity:
@@ -9271,7 +9295,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -9287,7 +9311,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -9604,6 +9628,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -9700,7 +9762,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -10013,7 +10075,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -10026,7 +10088,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -10205,20 +10267,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -10242,7 +10309,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -10250,7 +10317,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -10299,13 +10366,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -10413,6 +10480,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -11006,6 +11078,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -11194,13 +11268,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -11209,7 +11283,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -11249,6 +11323,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -11268,7 +11343,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -11290,12 +11365,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -11305,10 +11380,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -11320,12 +11396,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -11335,7 +11414,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -11396,7 +11475,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -11462,6 +11541,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -11569,6 +11650,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -11610,7 +11696,7 @@ components:
aggregatedEventDateTime:
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 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''.'
+ description: '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
appDisplayName:
@@ -11645,16 +11731,16 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.registrationAuthMethod'
- description: 'Represents the authentication method that the user has registered. Possible values are: email, mobilePhone, officePhone, securityQuestion (only used for self-service password reset), appNotification, appCode, and alternateMobilePhone (supported only in registration).'
+ description: 'Represents the authentication method that the user has registered. Possible values are: email, mobilePhone, officePhone, securityQuestion (only used for self-service password reset), appNotification, appCode, alternateMobilePhone (supported only in registration), fido, appPassword, unknownFutureValue.'
isCapable:
type: boolean
description: Indicates whether the user is ready to perform self-service password reset or MFA.
isEnabled:
type: boolean
- description: Indiciates whether the user enabled to perform self-service password reset.
+ description: Indicates whether the user enabled to perform self-service password reset.
isMfaRegistered:
type: boolean
- description: Indiciates whether the user is registered for MFA.
+ description: Indicates whether the user is registered for MFA.
isRegistered:
type: boolean
description: Indicates whether the user has registered any authentication methods for self-service password reset.
@@ -11677,7 +11763,7 @@ components:
eventDateTime:
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 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''.'
+ description: '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.'
format: date-time
failureReason:
type: string
@@ -11714,6 +11800,7 @@ components:
properties:
userPrincipalName:
type: string
+ description: The UPN of the user represented by these statistics.
nullable: true
additionalProperties:
type: object
@@ -12029,13 +12116,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -12174,7 +12261,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -12221,7 +12308,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 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'''
+ description: '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
name:
@@ -12267,7 +12354,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -12475,6 +12562,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -12498,6 +12587,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -12686,12 +12777,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -12705,6 +12799,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -12739,6 +12834,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -12759,6 +12855,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -12772,6 +12869,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -12787,6 +12885,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -12796,10 +12895,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -12865,6 +12966,32 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlan:
allOf:
- $ref: '#/components/schemas/microsoft.graph.plannerDelta'
@@ -12880,7 +13007,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -12952,7 +13079,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -12986,7 +13113,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -13214,99 +13341,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -13471,6 +13505,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.automaticRepliesSetting:
title: automaticRepliesSetting
type: object
@@ -13731,7 +13858,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -14182,6 +14309,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -14193,6 +14321,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -14204,36 +14333,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -14250,7 +14382,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -14265,16 +14397,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -14297,7 +14439,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -14317,7 +14459,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -14377,6 +14519,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -14668,11 +14832,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -15563,7 +15728,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -15575,7 +15740,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -15583,7 +15748,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -15624,7 +15789,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -15663,6 +15828,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -16421,6 +16596,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -16518,6 +16694,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -16565,6 +16753,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -16683,7 +16872,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -16798,11 +16987,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -16833,7 +17023,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -16862,15 +17052,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -17768,6 +17961,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -17947,6 +18151,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -18107,9 +18322,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -18308,6 +18525,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -18385,9 +18603,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -18457,13 +18677,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -18475,18 +18698,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -18506,9 +18734,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -18617,6 +18847,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlanContainer:
title: plannerPlanContainer
type: object
@@ -18691,7 +18999,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -18759,7 +19067,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -18803,6 +19111,161 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsApp:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsApp
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
+ nullable: true
+ distributionMethod:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
+ externalId:
+ type: string
+ description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
+ nullable: true
+ appDefinitions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
+ description: The details for each version of the app.
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppDefinition:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppDefinition
+ type: object
+ properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
+ azureADAppId:
+ type: string
+ description: The WebApplicationInfo.id from the Teams App manifest.
+ nullable: true
+ createdBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ description:
+ type: string
+ description: Verbose description of the application.
+ nullable: true
+ displayName:
+ type: string
+ description: The name of the app provided by the app developer.
+ nullable: true
+ 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
+ format: date-time
+ nullable: true
+ publishingState:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppPublishingState'
+ shortdescription:
+ type: string
+ nullable: true
+ teamsAppId:
+ type: string
+ description: The id from the Teams App manifest.
+ nullable: true
+ version:
+ type: string
+ description: The version number of the application.
+ nullable: true
+ bot:
+ $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.operationStatus:
title: operationStatus
enum:
@@ -18828,7 +19291,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -18987,13 +19450,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -19021,160 +19484,12 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
+ microsoft.graph.externalAudienceScope:
+ title: externalAudienceScope
enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.teamsApp:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsApp
- type: object
- properties:
- displayName:
- type: string
- description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- distributionMethod:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
- externalId:
- type: string
- description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- appDefinitions:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
- description: The details for each version of the app.
- additionalProperties:
- type: object
- microsoft.graph.teamsAppDefinition:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsAppDefinition
- type: object
- properties:
- azureADAppId:
- type: string
- description: The WebApplicationInfo.id from the Teams App manifest.
- nullable: true
- createdBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- description:
- type: string
- nullable: true
- displayName:
- type: string
- description: The name of the app provided by the app developer.
- nullable: true
- 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
- format: date-time
- nullable: true
- publishingState:
- $ref: '#/components/schemas/microsoft.graph.teamsAppPublishingState'
- shortdescription:
- type: string
- nullable: true
- teamsAppId:
- type: string
- description: The id from the Teams App manifest.
- nullable: true
- version:
- type: string
- description: The version number of the application.
- nullable: true
- bot:
- $ref: '#/components/schemas/microsoft.graph.teamworkBot'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.externalAudienceScope:
- title: externalAudienceScope
- enum:
- - none
- - contactsOnly
- - all
+ - none
+ - contactsOnly
+ - all
type: string
microsoft.graph.automaticRepliesStatus:
title: automaticRepliesStatus
@@ -19363,7 +19678,7 @@ 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 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''.'
+ description: '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
message:
@@ -19675,6 +19990,24 @@ components:
type: string
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -19686,10 +20019,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -20421,6 +20762,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -20428,6 +20770,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -20441,7 +20784,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -20449,7 +20792,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 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'''
+ description: '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
additionalProperties:
@@ -20774,6 +21117,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -20851,9 +21218,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -20915,7 +21284,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -20926,19 +21295,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -21371,6 +21730,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -21383,6 +21750,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -21691,6 +22070,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.plannerContainerType:
title: plannerContainerType
enum:
@@ -21824,6 +22301,65 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppDistributionMethod:
+ title: teamsAppDistributionMethod
+ enum:
+ - store
+ - organization
+ - sideloaded
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppPublishingState:
+ title: teamsAppPublishingState
+ enum:
+ - submitted
+ - rejected
+ - published
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkBot:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkBot
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -21991,44 +22527,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
- microsoft.graph.teamsAppDistributionMethod:
- title: teamsAppDistributionMethod
- enum:
- - store
- - organization
- - sideloaded
- - unknownFutureValue
- type: string
- microsoft.graph.teamsAppPublishingState:
- title: teamsAppPublishingState
- enum:
- - submitted
- - rejected
- - published
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkBot:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkBot
- type: object
- additionalProperties:
- type: object
microsoft.graph.volumeType:
title: volumeType
enum:
@@ -22405,6 +22903,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -22500,6 +22999,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -22543,6 +23064,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -22567,6 +23105,15 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -22740,6 +23287,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.scheduleChangeRequestActor:
title: scheduleChangeRequestActor
enum:
@@ -22790,7 +23375,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -22800,7 +23385,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Devices.CorporateManagement.yml b/openApiDocs/beta/Devices.CorporateManagement.yml
index 9f881463df5..9bd9b47b8f4 100644
--- a/openApiDocs/beta/Devices.CorporateManagement.yml
+++ b/openApiDocs/beta/Devices.CorporateManagement.yml
@@ -20398,6 +20398,8 @@ paths:
- azureADRegistered desc
- chassisType
- chassisType desc
+ - chromeOSDeviceInfo
+ - chromeOSDeviceInfo desc
- complianceGracePeriodExpirationDateTime
- complianceGracePeriodExpirationDateTime desc
- complianceState
@@ -20554,6 +20556,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -20748,6 +20751,7 @@ paths:
- azureADDeviceId
- azureADRegistered
- chassisType
+ - chromeOSDeviceInfo
- complianceGracePeriodExpirationDateTime
- complianceState
- configurationManagerClientEnabledFeatures
@@ -23658,6 +23662,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -23729,6 +23734,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -23963,6 +23969,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -24034,6 +24041,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -24147,6 +24155,12 @@ paths:
user-id: $request.path.user-id
managedDevice-id: $request.path.managedDevice-id
user-id1: $request.path.user-id1
+ oauth2PermissionGrants:
+ operationId: users.managedDevices.Users.ListOauth2PermissionGrants
+ parameters:
+ user-id: $request.path.user-id
+ managedDevice-id: $request.path.managedDevice-id
+ user-id1: $request.path.user-id1
ownedDevices:
operationId: users.managedDevices.Users.ListOwnedDevices
parameters:
@@ -28625,6 +28639,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -29245,7 +29264,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -29262,7 +29281,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -29353,7 +29372,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -29398,7 +29417,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -29510,12 +29529,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -29590,6 +29609,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -30789,6 +30812,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -31080,11 +31125,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -31594,7 +31640,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -31629,7 +31675,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -31956,12 +32002,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -31971,16 +32017,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -32013,6 +32059,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -32046,15 +32130,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -32066,11 +32150,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -32078,11 +32162,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -32238,7 +32322,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -32373,7 +32457,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -32562,7 +32646,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -32576,7 +32660,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -32620,7 +32704,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -32629,7 +32713,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -32669,7 +32753,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -32702,26 +32786,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -32734,7 +32818,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -33019,7 +33103,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -33032,7 +33116,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -33293,6 +33377,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -33318,6 +33403,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -33337,20 +33424,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -33374,7 +33466,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -33382,7 +33474,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -33431,13 +33523,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -33554,6 +33646,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -33802,13 +33896,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -33817,7 +33911,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -33857,6 +33951,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -33876,7 +33971,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -33898,12 +33993,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -33913,10 +34008,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -33928,12 +34024,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -33943,7 +34042,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -34004,7 +34103,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -34070,6 +34169,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -34177,6 +34278,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -34196,7 +34302,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -34237,8 +34343,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -34276,6 +34380,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -35072,7 +35178,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -35233,13 +35339,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -35378,7 +35484,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -35425,7 +35531,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 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'''
+ description: '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
name:
@@ -35624,18 +35730,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -35673,7 +35784,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -35713,7 +35824,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -36241,6 +36352,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -36264,6 +36377,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -36452,12 +36567,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -36471,6 +36589,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -36505,6 +36624,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -36525,6 +36645,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -36538,6 +36659,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -36553,6 +36675,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -36562,10 +36685,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -36631,12 +36756,39 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.appConsentRequestScope:
title: appConsentRequestScope
type: object
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -36648,6 +36800,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -36659,36 +36812,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -36705,7 +36861,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -36720,16 +36876,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -36752,7 +36918,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -36772,7 +36938,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -36865,7 +37031,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -36926,7 +37092,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -36938,7 +37104,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -36946,7 +37112,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -36987,7 +37153,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -37026,6 +37192,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -37112,7 +37288,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -37146,7 +37322,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -37974,6 +38150,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -38071,6 +38248,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -38118,6 +38307,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -38236,7 +38426,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -38387,11 +38577,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -38422,7 +38613,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -38451,15 +38642,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -38612,99 +38806,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -38833,38 +38934,131 @@ components:
type: object
additionalProperties:
type: object
- microsoft.graph.userScopeTeamsAppInstallation:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
- - title: userScopeTeamsAppInstallation
- type: object
- properties:
- chat:
- $ref: '#/components/schemas/microsoft.graph.chat'
- additionalProperties:
- type: object
- microsoft.graph.todoTaskList:
+ microsoft.graph.schedule:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: todoTaskList
+ - title: schedule
type: object
properties:
- displayName:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
type: string
- description: The name of the task list.
+ description: Additional information about why schedule provisioning failed.
nullable: true
- isOwner:
+ swapShiftsRequestsEnabled:
type: boolean
- description: True if the user is owner of the given task list.
- isShared:
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
type: boolean
- description: True if the task list is shared with other users
- wellknownListName:
- $ref: '#/components/schemas/microsoft.graph.wellknownListName'
- extensions:
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.extension'
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
+ microsoft.graph.userScopeTeamsAppInstallation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
+ - title: userScopeTeamsAppInstallation
+ type: object
+ properties:
+ chat:
+ $ref: '#/components/schemas/microsoft.graph.chat'
+ additionalProperties:
+ type: object
+ microsoft.graph.todoTaskList:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: todoTaskList
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the task list.
+ nullable: true
+ isOwner:
+ type: boolean
+ description: True if the user is owner of the given task list.
+ isShared:
+ type: boolean
+ description: True if the task list is shared with other users
+ wellknownListName:
+ $ref: '#/components/schemas/microsoft.graph.wellknownListName'
+ extensions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.extension'
description: The collection of open extensions defined for the task list. Nullable.
tasks:
type: array
@@ -39137,7 +39331,7 @@ 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 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''.'
+ description: '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
message:
@@ -39416,7 +39610,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -39994,6 +40188,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -40173,6 +40378,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -40333,9 +40549,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -40534,6 +40752,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -40611,9 +40830,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -40683,13 +40904,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -40701,18 +40925,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -40732,9 +40961,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -40843,6 +41074,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.request:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -40887,6 +41196,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -40898,10 +41225,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -41202,6 +41537,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -41209,6 +41545,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -41222,7 +41559,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -41230,7 +41567,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 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'''
+ description: '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
additionalProperties:
@@ -41269,7 +41606,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -41337,7 +41674,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -41677,6 +42014,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -41747,6 +42108,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -41755,6 +42118,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -41780,6 +42144,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -41818,9 +42186,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -41882,7 +42252,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -41893,19 +42263,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -41937,63 +42297,147 @@ components:
- moderate
- unknownFutureValue
type: string
- microsoft.graph.operationStatus:
- title: operationStatus
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
enum:
- - NotStarted
- - Running
- - Completed
- - Failed
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
type: string
- microsoft.graph.timeClockSettings:
- title: timeClockSettings
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
type: object
properties:
- approvedLocation:
- $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
additionalProperties:
type: object
- microsoft.graph.offerShiftRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: offerShiftRequest
- type: object
- properties:
- recipientActionDateTime:
- 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 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'''
- format: date-time
- nullable: true
- recipientActionMessage:
- type: string
- description: Custom message sent by recipient of the offer shift request.
- nullable: true
- recipientUserId:
- type: string
- description: User id of the recipient of the offer shift request.
- nullable: true
- senderShiftId:
- type: string
- description: User id of the sender of the offer shift request.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShiftChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: openShiftChangeRequest
- type: object
- properties:
- openShiftId:
- type: string
- description: ID for the open shift.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShift:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.operationStatus:
+ title: operationStatus
+ enum:
+ - NotStarted
+ - Running
+ - Completed
+ - Failed
+ type: string
+ microsoft.graph.timeClockSettings:
+ title: timeClockSettings
+ type: object
+ properties:
+ approvedLocation:
+ $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ additionalProperties:
+ type: object
+ microsoft.graph.offerShiftRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: offerShiftRequest
+ type: object
+ properties:
+ recipientActionDateTime:
+ 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 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
+ recipientActionMessage:
+ type: string
+ description: Custom message sent by recipient of the offer shift request.
+ nullable: true
+ recipientUserId:
+ type: string
+ description: User id of the recipient of the offer shift request.
+ nullable: true
+ senderShiftId:
+ type: string
+ description: User id of the sender of the offer shift request.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.openShiftChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: openShiftChangeRequest
+ type: object
+ properties:
+ openShiftId:
+ type: string
+ description: ID for the open shift.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.openShift:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- title: openShift
type: object
properties:
@@ -42121,13 +42565,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -42155,90 +42599,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.wellknownListName:
title: wellknownListName
enum:
@@ -42601,6 +42961,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -42613,6 +42981,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -42921,6 +43301,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewApplyAction:
title: accessReviewApplyAction
type: object
@@ -43196,6 +43674,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -43301,6 +43780,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -43309,6 +43810,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -43324,6 +43833,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -43367,6 +43889,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -43534,21 +44088,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -43573,6 +44112,15 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -43746,6 +44294,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.insightIdentity:
title: insightIdentity
type: object
@@ -43814,7 +44400,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -43824,7 +44410,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Education.yml b/openApiDocs/beta/Education.yml
index 5ad1637ec10..4c2341f3051 100644
--- a/openApiDocs/beta/Education.yml
+++ b/openApiDocs/beta/Education.yml
@@ -8054,6 +8054,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -8125,6 +8126,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -8202,6 +8204,8 @@ paths:
operationId: education.me.User.GetManager
memberOf:
operationId: education.me.User.ListMemberOf
+ oauth2PermissionGrants:
+ operationId: education.me.User.ListOauth2PermissionGrants
ownedDevices:
operationId: education.me.User.ListOwnedDevices
ownedObjects:
@@ -8337,6 +8341,8 @@ paths:
operationId: education.me.User.GetManager
memberOf:
operationId: education.me.User.ListMemberOf
+ oauth2PermissionGrants:
+ operationId: education.me.User.ListOauth2PermissionGrants
ownedDevices:
operationId: education.me.User.ListOwnedDevices
ownedObjects:
@@ -14262,6 +14268,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -14333,6 +14340,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -14428,6 +14436,10 @@ paths:
operationId: education.users.User.ListMemberOf
parameters:
educationUser-id: $request.path.educationUser-id
+ oauth2PermissionGrants:
+ operationId: education.users.User.ListOauth2PermissionGrants
+ parameters:
+ educationUser-id: $request.path.educationUser-id
ownedDevices:
operationId: education.users.User.ListOwnedDevices
parameters:
@@ -14689,6 +14701,10 @@ paths:
operationId: education.users.User.ListMemberOf
parameters:
educationUser-id: $request.path.educationUser-id
+ oauth2PermissionGrants:
+ operationId: education.users.User.ListOauth2PermissionGrants
+ parameters:
+ educationUser-id: $request.path.educationUser-id
ownedDevices:
operationId: education.users.User.ListOwnedDevices
parameters:
@@ -15120,13 +15136,13 @@ components:
assignDateTime:
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 when the assignment should become active. If in the future, the assignment is not shown to the student until this date. 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'''
+ description: 'The date when the assignment should become active. If in the future, the assignment is not shown to the student until this date. 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
assignedDateTime:
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 moment that the assignment was published to students and the assignment shows up on the students timeline. 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'''
+ description: 'The moment that the assignment was published to students and the assignment shows up on the students timeline. 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
assignTo:
@@ -15138,7 +15154,7 @@ components:
closeDateTime:
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 when the assignment will be closed for submissions. This is an optional field that can be null if the assignment does not allowLateSubmissions or when the closeDateTime is the same as the dueDateTime. But if specified, then the closeDateTime must be greater than or equal to the dueDateTime. 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'''
+ description: 'Date when the assignment will be closed for submissions. This is an optional field that can be null if the assignment does not allowLateSubmissions or when the closeDateTime is the same as the dueDateTime. But if specified, then the closeDateTime must be greater than or equal to the dueDateTime. 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
createdBy:
@@ -15146,7 +15162,7 @@ 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: 'Moment when the assignment was 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Moment when the assignment was 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
displayName:
@@ -15156,7 +15172,7 @@ 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 when the students assignment 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Date when the students assignment 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
grading:
@@ -15168,7 +15184,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: 'Moment when the assignment was last modified. 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'''
+ description: 'Moment when the assignment was last modified. 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
notificationChannelUrl:
@@ -15221,7 +15237,7 @@ 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 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'''
+ description: '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
description:
@@ -15237,7 +15253,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: 'Moment in time when the resource was last modified. 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'''
+ description: 'Moment in time when the resource was last modified. 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
levels:
@@ -15265,7 +15281,7 @@ components:
releasedDateTime:
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: 'Moment in time when the submission was released. 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'''
+ description: 'Moment in time when the submission was released. 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
resourcesFolderUrl:
@@ -15277,7 +15293,7 @@ components:
returnedDateTime:
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: 'Moment in time when the submission was returned. 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'''
+ description: 'Moment in time when the submission was returned. 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
status:
@@ -15287,7 +15303,7 @@ components:
submittedDateTime:
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: 'Moment in time when the submission was moved into the submitted state. 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'''
+ description: 'Moment in time when the submission was moved into the submitted state. 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
unsubmittedBy:
@@ -15295,7 +15311,7 @@ components:
unsubmittedDateTime:
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: 'Moment in time when the submission was moved from submitted into the working state. 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'''
+ description: 'Moment in time when the submission was moved from submitted into the working state. 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
outcomes:
@@ -15383,7 +15399,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -15397,7 +15413,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -15441,7 +15457,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -15450,7 +15466,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -15490,7 +15506,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -15523,26 +15539,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -15555,7 +15571,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -15916,7 +15932,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -15933,7 +15949,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -16024,7 +16040,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -16069,7 +16085,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -16181,12 +16197,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -16261,6 +16277,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -16480,7 +16500,7 @@ components:
nullable: true
visibility:
type: string
- description: 'Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.'
+ description: 'Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.'
nullable: true
members:
type: array
@@ -16737,7 +16757,7 @@ 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 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'''
+ description: '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
displayName:
@@ -16749,7 +16769,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: 'Moment in time when the resource was last modified. 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'''
+ description: 'Moment in time when the resource was last modified. 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
additionalProperties:
@@ -16927,12 +16947,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -16942,16 +16962,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -16996,18 +17016,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -17050,15 +17075,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -17070,11 +17095,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -17082,11 +17107,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -17215,7 +17240,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -17309,7 +17334,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -17349,7 +17374,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -17464,6 +17489,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -17489,6 +17515,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -17609,7 +17637,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -17650,8 +17678,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -17689,6 +17715,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.relatedContact:
@@ -17704,7 +17732,7 @@ components:
description: Name of the contact. Required.
emailAddress:
type: string
- description: Primary email address of the contact.
+ description: Email address of the contact.
nullable: true
id:
type: string
@@ -17725,7 +17753,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -17902,7 +17930,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -18173,6 +18201,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -18269,7 +18335,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -18582,7 +18648,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -18595,7 +18661,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -18774,20 +18840,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -18811,7 +18882,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -18819,7 +18890,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -18868,13 +18939,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -18982,6 +19053,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -19575,6 +19651,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -19763,13 +19841,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -19778,7 +19856,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -19818,6 +19896,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -19837,7 +19916,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -19859,12 +19938,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -19874,10 +19953,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -19889,12 +19969,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -19904,7 +19987,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -19965,7 +20048,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -20031,6 +20114,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -20138,6 +20223,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -20382,13 +20472,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -20527,7 +20617,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -20574,7 +20664,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 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'''
+ description: '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
name:
@@ -20620,7 +20710,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -20816,6 +20906,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -20839,6 +20931,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -21027,12 +21121,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -21046,6 +21143,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -21080,6 +21178,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -21100,6 +21199,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -21113,6 +21213,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -21128,6 +21229,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -21137,10 +21239,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -21206,6 +21310,32 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlan:
allOf:
- $ref: '#/components/schemas/microsoft.graph.plannerDelta'
@@ -21221,7 +21351,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -21293,7 +21423,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -21327,7 +21457,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -21555,99 +21685,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -21812,6 +21849,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.contactRelationship:
title: contactRelationship
enum:
@@ -22100,7 +22230,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -22505,6 +22635,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -22516,6 +22647,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -22527,36 +22659,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -22573,7 +22708,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -22588,16 +22723,26 @@ components:
type: string
description: The review decision justification.
nullable: true
- recommendation:
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
+ recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -22620,7 +22765,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -22640,7 +22785,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -22700,6 +22845,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -22991,11 +23158,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -23886,7 +24054,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -23898,7 +24066,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -23906,7 +24074,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -23947,7 +24115,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -23986,6 +24154,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -24744,6 +24922,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -24841,6 +25020,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -24888,6 +25079,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -25006,7 +25198,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -25121,11 +25313,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -25156,7 +25349,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -25185,15 +25378,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -25770,6 +25966,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -25949,6 +26156,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -26109,9 +26327,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -26310,6 +26530,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -26387,9 +26608,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -26459,13 +26682,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -26477,18 +26703,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -26508,9 +26739,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -26619,6 +26852,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlanContainer:
title: plannerPlanContainer
type: object
@@ -26693,7 +27004,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -26761,7 +27072,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -26805,6 +27116,161 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsApp:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsApp
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
+ nullable: true
+ distributionMethod:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
+ externalId:
+ type: string
+ description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
+ nullable: true
+ appDefinitions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
+ description: The details for each version of the app.
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppDefinition:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppDefinition
+ type: object
+ properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
+ azureADAppId:
+ type: string
+ description: The WebApplicationInfo.id from the Teams App manifest.
+ nullable: true
+ createdBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ description:
+ type: string
+ description: Verbose description of the application.
+ nullable: true
+ displayName:
+ type: string
+ description: The name of the app provided by the app developer.
+ nullable: true
+ 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
+ format: date-time
+ nullable: true
+ publishingState:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppPublishingState'
+ shortdescription:
+ type: string
+ nullable: true
+ teamsAppId:
+ type: string
+ description: The id from the Teams App manifest.
+ nullable: true
+ version:
+ type: string
+ description: The version number of the application.
+ nullable: true
+ bot:
+ $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.operationStatus:
title: operationStatus
enum:
@@ -26830,7 +27296,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -26989,13 +27455,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -27023,156 +27489,8 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.teamsApp:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsApp
- type: object
- properties:
- displayName:
- type: string
- description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- distributionMethod:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
- externalId:
- type: string
- description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- appDefinitions:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
- description: The details for each version of the app.
- additionalProperties:
- type: object
- microsoft.graph.teamsAppDefinition:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsAppDefinition
- type: object
- properties:
- azureADAppId:
- type: string
- description: The WebApplicationInfo.id from the Teams App manifest.
- nullable: true
- createdBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- description:
- type: string
- nullable: true
- displayName:
- type: string
- description: The name of the app provided by the app developer.
- nullable: true
- 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
- format: date-time
- nullable: true
- publishingState:
- $ref: '#/components/schemas/microsoft.graph.teamsAppPublishingState'
- shortdescription:
- type: string
- nullable: true
- teamsAppId:
- type: string
- description: The id from the Teams App manifest.
- nullable: true
- version:
- type: string
- description: The version number of the application.
- nullable: true
- bot:
- $ref: '#/components/schemas/microsoft.graph.teamworkBot'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.externalAudienceScope:
- title: externalAudienceScope
+ microsoft.graph.externalAudienceScope:
+ title: externalAudienceScope
enum:
- none
- contactsOnly
@@ -27365,7 +27683,7 @@ 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 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''.'
+ description: '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
message:
@@ -27685,6 +28003,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -27696,10 +28032,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -28431,6 +28775,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -28438,6 +28783,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -28451,7 +28797,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -28459,7 +28805,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 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'''
+ description: '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
additionalProperties:
@@ -28784,6 +29130,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -28861,9 +29231,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -28925,7 +29297,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -28936,19 +29308,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -29255,6 +29617,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -29267,6 +29637,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -29575,6 +29957,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.plannerContainerType:
title: plannerContainerType
enum:
@@ -29708,6 +30188,65 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppDistributionMethod:
+ title: teamsAppDistributionMethod
+ enum:
+ - store
+ - organization
+ - sideloaded
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamsAppPublishingState:
+ title: teamsAppPublishingState
+ enum:
+ - submitted
+ - rejected
+ - published
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkBot:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkBot
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -29875,44 +30414,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
- microsoft.graph.teamsAppDistributionMethod:
- title: teamsAppDistributionMethod
- enum:
- - store
- - organization
- - sideloaded
- - unknownFutureValue
- type: string
- microsoft.graph.teamsAppPublishingState:
- title: teamsAppPublishingState
- enum:
- - submitted
- - rejected
- - published
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkBot:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkBot
- type: object
- additionalProperties:
- type: object
microsoft.graph.volumeType:
title: volumeType
enum:
@@ -30289,6 +30790,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -30384,6 +30886,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -30427,6 +30951,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30451,6 +30992,15 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30624,6 +31174,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.scheduleChangeRequestActor:
title: scheduleChangeRequestActor
enum:
@@ -30674,7 +31262,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -30684,7 +31272,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Files.yml b/openApiDocs/beta/Files.yml
index e5eeb4dacbd..05bcb7b528e 100644
--- a/openApiDocs/beta/Files.yml
+++ b/openApiDocs/beta/Files.yml
@@ -637,6 +637,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -647,6 +648,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -1598,6 +1600,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -1608,6 +1611,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -2602,6 +2606,8 @@ paths:
- image desc
- location
- location desc
+ - media
+ - media desc
- package
- package desc
- pendingOperations
@@ -2622,6 +2628,8 @@ paths:
- sharepointIds desc
- size
- size desc
+ - source
+ - source desc
- specialFolder
- specialFolder desc
- video
@@ -2659,6 +2667,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -2669,6 +2678,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -2811,6 +2821,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -2821,6 +2832,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -3124,6 +3136,8 @@ paths:
- image desc
- location
- location desc
+ - media
+ - media desc
- package
- package desc
- pendingOperations
@@ -3144,6 +3158,8 @@ paths:
- sharepointIds desc
- size
- size desc
+ - source
+ - source desc
- specialFolder
- specialFolder desc
- video
@@ -3181,6 +3197,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -3191,6 +3208,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -3333,6 +3351,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -3343,6 +3362,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -3646,6 +3666,8 @@ paths:
- image desc
- location
- location desc
+ - media
+ - media desc
- package
- package desc
- pendingOperations
@@ -3666,6 +3688,8 @@ paths:
- sharepointIds desc
- size
- size desc
+ - source
+ - source desc
- specialFolder
- specialFolder desc
- video
@@ -3703,6 +3727,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -3713,6 +3738,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -3855,6 +3881,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -3865,6 +3892,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -4569,6 +4597,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -4579,6 +4608,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -5530,6 +5560,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -5540,6 +5571,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -7617,12 +7649,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -7663,12 +7691,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -7726,12 +7750,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -7757,12 +7777,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9346,12 +9362,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9392,12 +9404,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9455,12 +9463,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9486,12 +9490,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -10388,6 +10388,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -10398,6 +10399,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -11246,6 +11248,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -11256,6 +11259,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -12594,6 +12598,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -12604,6 +12609,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -12868,6 +12874,8 @@ paths:
- image desc
- location
- location desc
+ - media
+ - media desc
- package
- package desc
- pendingOperations
@@ -12888,6 +12896,8 @@ paths:
- sharepointIds desc
- size
- size desc
+ - source
+ - source desc
- specialFolder
- specialFolder desc
- video
@@ -12925,6 +12935,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -12935,6 +12946,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -13077,6 +13089,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -13087,6 +13100,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -14203,6 +14217,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -14213,6 +14228,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -14477,6 +14493,8 @@ paths:
- image desc
- location
- location desc
+ - media
+ - media desc
- package
- package desc
- pendingOperations
@@ -14497,6 +14515,8 @@ paths:
- sharepointIds desc
- size
- size desc
+ - source
+ - source desc
- specialFolder
- specialFolder desc
- video
@@ -14534,6 +14554,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -14544,6 +14565,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -14686,6 +14708,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -14696,6 +14719,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -15400,6 +15424,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -15410,6 +15435,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -16361,6 +16387,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -16371,6 +16398,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -18448,12 +18476,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -18494,12 +18518,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -18557,12 +18577,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -18588,12 +18604,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -20177,12 +20189,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -20223,12 +20231,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -20286,12 +20290,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -20317,12 +20317,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -21219,6 +21215,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -21229,6 +21226,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -22077,6 +22075,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -22087,6 +22086,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -23758,6 +23758,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -23768,6 +23769,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -24494,6 +24496,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -24504,6 +24507,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -25525,6 +25529,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -25535,6 +25540,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -25782,6 +25788,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -25808,6 +25815,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -25870,6 +25878,10 @@ paths:
operationId: shares.Site.ListSites
parameters:
sharedDriveItem-id: $request.path.sharedDriveItem-id
+ termStore:
+ operationId: shares.Site.GetTermStore
+ parameters:
+ sharedDriveItem-id: $request.path.sharedDriveItem-id
onenote:
operationId: shares.Site.GetOnenote
parameters:
@@ -26560,6 +26572,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -26583,6 +26597,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -26885,12 +26901,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -26904,6 +26923,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -26938,6 +26958,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -26958,6 +26979,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -26971,6 +26993,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -26986,6 +27009,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -26995,10 +27019,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.itemReference:
@@ -27097,9 +27123,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -27177,6 +27205,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -27202,6 +27231,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -27598,6 +27629,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -27782,6 +27824,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -28180,6 +28233,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -28257,9 +28311,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -28329,13 +28385,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -28347,18 +28406,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -28378,9 +28442,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -28439,6 +28505,32 @@ components:
$ref: '#/components/schemas/microsoft.graph.webPart'
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.onenote:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -28506,7 +28598,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -28523,7 +28615,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -28614,7 +28706,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -28659,7 +28751,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -28771,12 +28863,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -28851,6 +28943,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -29234,6 +29330,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -29246,6 +29350,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -29492,6 +29608,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.notebook:
allOf:
- $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel'
@@ -29540,7 +29734,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -29574,7 +29768,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -29726,7 +29920,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -29761,7 +29955,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -30088,12 +30282,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -30103,16 +30297,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -30145,6 +30339,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30178,15 +30410,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -30198,11 +30430,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -30210,11 +30442,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -30370,7 +30602,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -30505,7 +30737,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -30694,7 +30926,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -30708,7 +30940,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -30752,7 +30984,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -30761,7 +30993,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -30801,7 +31033,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -30834,26 +31066,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -30866,7 +31098,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -31151,7 +31383,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -31164,7 +31396,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -31350,20 +31582,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -31387,7 +31624,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -31395,7 +31632,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -31444,13 +31681,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -31558,6 +31795,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -32151,6 +32393,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -32361,13 +32605,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -32376,7 +32620,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -32416,6 +32660,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -32435,7 +32680,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -32457,12 +32702,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -32472,10 +32717,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -32487,12 +32733,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -32502,7 +32751,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -32563,7 +32812,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -32629,6 +32878,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -32736,6 +32987,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -32755,7 +33011,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -32796,8 +33052,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -32835,6 +33089,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -32863,6 +33119,15 @@ components:
description: The task lists in the users mailbox.
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -33041,6 +33306,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.onenoteEntityHierarchyModel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel'
@@ -33058,7 +33421,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -33126,7 +33489,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -33437,7 +33800,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -33584,13 +33947,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -33729,7 +34092,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -33776,7 +34139,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 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'''
+ description: '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
name:
@@ -33975,18 +34338,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -34024,7 +34392,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -34064,7 +34432,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -34422,6 +34790,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -34433,6 +34802,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -34444,36 +34814,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -34490,7 +34863,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -34505,16 +34878,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -34537,7 +34920,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -34557,7 +34940,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -34617,6 +35000,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -34908,11 +35313,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -35781,7 +36187,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -35842,7 +36248,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -35854,7 +36260,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -35862,7 +36268,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -35903,7 +36309,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -35942,6 +36348,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -36695,6 +37111,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -36792,6 +37209,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -36839,6 +37268,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -36957,7 +37387,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -37108,11 +37538,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -37143,7 +37574,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -37172,15 +37603,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -37333,99 +37767,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -37554,6 +37895,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -37799,6 +38233,44 @@ components:
description: Represents the worksheet protection option of allowing using sort feature.
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.externalLink:
title: externalLink
type: object
@@ -38011,7 +38483,7 @@ 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 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''.'
+ description: '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
message:
@@ -38290,7 +38762,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -38592,6 +39064,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -38603,10 +39093,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -39395,6 +39893,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -39402,6 +39901,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -39415,7 +39915,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -39423,7 +39923,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 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'''
+ description: '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
additionalProperties:
@@ -39748,6 +40248,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -39818,6 +40342,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -39826,6 +40352,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -39851,6 +40378,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -39889,9 +40420,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -39953,7 +40486,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -39964,19 +40497,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -40008,6 +40531,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.timeClockSettings:
title: timeClockSettings
type: object
@@ -40025,7 +40632,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -40184,13 +40791,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -40218,90 +40825,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.wellknownListName:
title: wellknownListName
enum:
@@ -41060,6 +41583,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -41155,6 +41679,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -41163,6 +41709,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -41178,6 +41732,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -41221,6 +41788,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -41388,21 +41987,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -41571,7 +42155,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -41581,7 +42165,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Groups.yml b/openApiDocs/beta/Groups.yml
index 083a0bb6a9d..64776248bf1 100644
--- a/openApiDocs/beta/Groups.yml
+++ b/openApiDocs/beta/Groups.yml
@@ -24126,7 +24126,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -24140,7 +24140,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -24184,7 +24184,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -24193,7 +24193,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -24233,7 +24233,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -24266,26 +24266,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -24298,7 +24298,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -24639,7 +24639,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -24733,7 +24733,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -24773,7 +24773,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -24829,7 +24829,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -24877,7 +24877,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 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'''
+ description: '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
name:
@@ -25019,18 +25019,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -25060,7 +25065,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -25162,7 +25167,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -25305,12 +25310,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -25320,16 +25325,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -25356,15 +25361,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -25376,11 +25381,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -25388,11 +25393,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -25521,6 +25526,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -25546,6 +25552,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -25614,7 +25622,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -25655,8 +25663,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -25694,6 +25700,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.attachmentType:
@@ -25799,13 +25807,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -25931,7 +25939,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -26325,6 +26333,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -26348,6 +26358,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -26536,12 +26548,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -26555,6 +26570,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -26589,6 +26605,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -26609,6 +26626,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -26622,6 +26640,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -26637,6 +26656,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -26646,10 +26666,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -26715,6 +26737,32 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlan:
allOf:
- $ref: '#/components/schemas/microsoft.graph.plannerDelta'
@@ -26730,7 +26778,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -26814,7 +26862,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -27042,99 +27090,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -27283,7 +27238,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -27300,7 +27255,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -27391,7 +27346,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -27436,7 +27391,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -27548,12 +27503,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -27628,6 +27583,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -27867,6 +27826,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.dayOfWeek:
title: dayOfWeek
enum:
@@ -28476,6 +28528,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -28655,6 +28718,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -28815,9 +28889,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -29016,6 +29092,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -29093,9 +29170,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -29165,13 +29244,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -29183,18 +29265,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -29214,9 +29301,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -29325,44 +29414,122 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.plannerDelta:
+ microsoft.graph.termStore.group:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: plannerDelta
- type: object
- additionalProperties:
- type: object
- microsoft.graph.plannerPlanContainer:
- title: plannerPlanContainer
- type: object
- properties:
- containerId:
- type: string
- description: The identifier of the resource that contains the plan.
- type:
- $ref: '#/components/schemas/microsoft.graph.plannerContainerType'
- url:
- type: string
- description: The full canonical URL of the container.
- additionalProperties:
- type: object
- microsoft.graph.plannerPlanContextCollection:
- title: plannerPlanContextCollection
- type: object
- additionalProperties:
- type: object
- microsoft.graph.plannerBucket:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.plannerDelta'
- - title: plannerBucket
+ - title: group
type: object
properties:
- name:
- type: string
- description: Name of the bucket.
- orderHint:
+ 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: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
+ microsoft.graph.plannerDelta:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: plannerDelta
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.plannerPlanContainer:
+ title: plannerPlanContainer
+ type: object
+ properties:
+ containerId:
+ type: string
+ description: The identifier of the resource that contains the plan.
+ type:
+ $ref: '#/components/schemas/microsoft.graph.plannerContainerType'
+ url:
+ type: string
+ description: The full canonical URL of the container.
+ additionalProperties:
+ type: object
+ microsoft.graph.plannerPlanContextCollection:
+ title: plannerPlanContextCollection
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.plannerBucket:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.plannerDelta'
+ - title: plannerBucket
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the bucket.
+ orderHint:
+ type: string
+ description: Hint used to order items of this type in a list view. The format is defined as outlined here.
nullable: true
planId:
type: string
@@ -29426,7 +29593,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -29438,7 +29605,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -29446,7 +29613,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -29487,7 +29654,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -29520,7 +29687,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29534,7 +29701,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29578,393 +29745,189 @@ components:
- moderate
- unknownFutureValue
type: string
- microsoft.graph.timeClockSettings:
- title: timeClockSettings
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
type: object
properties:
- approvedLocation:
- $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
additionalProperties:
type: object
- microsoft.graph.offerShiftRequest:
+ microsoft.graph.chatMessage:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: offerShiftRequest
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: chatMessage
type: object
properties:
- recipientActionDateTime:
+ attachments:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageAttachment'
+ description: Attached files. Attachments are currently read-only – sending attachments is not supported.
+ body:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
+ 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 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'''
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
- recipientActionMessage:
+ deletedDateTime:
+ 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: Custom message sent by recipient of the offer shift request.
+ description: 'Read only. Timestamp at which the chat message was deleted, or null if not deleted.'
+ format: date-time
nullable: true
- recipientUserId:
+ etag:
type: string
- description: User id of the recipient of the offer shift request.
+ description: Read-only. Version number of the chat message.
nullable: true
- senderShiftId:
+ from:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ importance:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageImportance'
+ lastEditedDateTime:
+ 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: User id of the sender of the offer shift request.
+ description: Read only. Timestamp when edits to the chat message were made. Triggers an 'Edited' flag in the Teams UI. If no edits are made the value is null.
+ format: date-time
nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShiftChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: openShiftChangeRequest
- type: object
- properties:
- openShiftId:
+ 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: ID for the open shift.
+ description: 'Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed.'
+ format: date-time
+ nullable: true
+ locale:
+ type: string
+ description: Locale of the chat message set by the client. Always set to en-us.
+ mentions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageMention'
+ description: 'List of entities mentioned in the chat message. Currently supports user, bot, team, channel.'
+ messageType:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageType'
+ policyViolation:
+ $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolation'
+ reactions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageReaction'
+ description: 'Reactions for this chat message (for example, Like).'
+ replyToId:
+ type: string
+ description: 'Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.)'
+ nullable: true
+ subject:
+ type: string
+ description: 'The subject of the chat message, in plaintext.'
+ nullable: true
+ summary:
+ type: string
+ description: 'Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat.'
+ nullable: true
+ webUrl:
+ type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
+ hostedContents:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
+ replies:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
- microsoft.graph.openShift:
+ microsoft.graph.teamsTab:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: openShift
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsTab
type: object
properties:
- draftOpenShift:
- $ref: '#/components/schemas/microsoft.graph.openShiftItem'
- isStagedForDeletion:
- type: boolean
+ configuration:
+ $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration'
+ displayName:
+ type: string
+ description: Name of the tab.
nullable: true
- schedulingGroupId:
+ messageId:
type: string
- description: ID for the scheduling group that the open shift belongs to.
nullable: true
- sharedOpenShift:
- $ref: '#/components/schemas/microsoft.graph.openShiftItem'
+ sortOrderIndex:
+ type: string
+ description: Index of the order used for sorting tabs.
+ nullable: true
+ teamsAppId:
+ type: string
+ nullable: true
+ webUrl:
+ type: string
+ description: Deep link URL of the tab instance. Read only.
+ nullable: true
+ teamsApp:
+ $ref: '#/components/schemas/microsoft.graph.teamsApp'
additionalProperties:
type: object
- microsoft.graph.schedulingGroup:
+ microsoft.graph.teamsApp:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: schedulingGroup
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsApp
type: object
properties:
displayName:
type: string
- description: The display name for the schedulingGroup. Required.
+ description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
nullable: true
- isActive:
- type: boolean
- description: Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.
+ distributionMethod:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
+ externalId:
+ type: string
+ description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
nullable: true
- userIds:
+ appDefinitions:
type: array
items:
- type: string
- nullable: true
- description: The list of user IDs that are a member of the schedulingGroup. Required.
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
+ description: The details for each version of the app.
additionalProperties:
type: object
- microsoft.graph.shift:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: shift
- type: object
- properties:
- draftShift:
- $ref: '#/components/schemas/microsoft.graph.shiftItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- schedulingGroupId:
- type: string
- description: ID of the scheduling group the shift is part of. Required.
- nullable: true
- sharedShift:
- $ref: '#/components/schemas/microsoft.graph.shiftItem'
- userId:
- type: string
- description: ID of the user assigned to the shift. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.swapShiftsChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- - title: swapShiftsChangeRequest
- type: object
- properties:
- recipientShiftId:
- type: string
- description: Shift ID for the recipient user with whom the request is to swap.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeCard:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeCard
- type: object
- properties:
- breaks:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
- clockInEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- clockOutEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- confirmedBy:
- $ref: '#/components/schemas/microsoft.graph.confirmedBy'
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- originalEntry:
- $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
- state:
- $ref: '#/components/schemas/microsoft.graph.timeCardState'
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffReason:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOffReason
- type: object
- properties:
- displayName:
- type: string
- description: The name of the timeOffReason. Required.
- nullable: true
- iconType:
- $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
- isActive:
- type: boolean
- description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: timeOffRequest
- type: object
- properties:
- endDateTime:
- 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 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'''
- format: date-time
- nullable: true
- startDateTime:
- 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 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'''
- format: date-time
- nullable: true
- timeOffReasonId:
- type: string
- description: The reason for the time off.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOff:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOff
- type: object
- properties:
- draftTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- sharedTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- userId:
- type: string
- description: ID of the user assigned to the timeOff. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.chatMessage:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: chatMessage
- type: object
- properties:
- attachments:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessageAttachment'
- description: Attached files. Attachments are currently read-only – sending attachments is not supported.
- body:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- channelIdentity:
- $ref: '#/components/schemas/microsoft.graph.channelIdentity'
- chatId:
- type: string
- nullable: true
- 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. Timestamp of when the chat message was created.
- format: date-time
- nullable: true
- deletedDateTime:
- 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. Timestamp at which the chat message was deleted, or null if not deleted.'
- format: date-time
- nullable: true
- etag:
- type: string
- description: Read-only. Version number of the chat message.
- nullable: true
- from:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- importance:
- $ref: '#/components/schemas/microsoft.graph.chatMessageImportance'
- lastEditedDateTime:
- 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. Timestamp when edits to the chat message were made. Triggers an 'Edited' flag in the Teams UI. If no edits are made the value is null.
- format: date-time
- nullable: true
- 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: 'Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed.'
- format: date-time
- nullable: true
- locale:
- type: string
- description: Locale of the chat message set by the client.
- mentions:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessageMention'
- description: 'List of entities mentioned in the chat message. Currently supports user, bot, team, channel.'
- messageType:
- $ref: '#/components/schemas/microsoft.graph.chatMessageType'
- policyViolation:
- $ref: '#/components/schemas/microsoft.graph.chatMessagePolicyViolation'
- reactions:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessageReaction'
- description: 'Reactions for this chat message (for example, Like).'
- replyToId:
- type: string
- description: 'Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.)'
- nullable: true
- subject:
- type: string
- description: 'The subject of the chat message, in plaintext.'
- nullable: true
- summary:
- type: string
- description: 'Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat.'
- nullable: true
- webUrl:
- type: string
- nullable: true
- hostedContents:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
- replies:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessage'
- additionalProperties:
- type: object
- microsoft.graph.teamsTab:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsTab
- type: object
- properties:
- configuration:
- $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration'
- displayName:
- type: string
- description: Name of the tab.
- nullable: true
- messageId:
- type: string
- nullable: true
- sortOrderIndex:
- type: string
- description: Index of the order used for sorting tabs.
- nullable: true
- teamsAppId:
- type: string
- nullable: true
- webUrl:
- type: string
- description: Deep link URL of the tab instance. Read only.
- nullable: true
- teamsApp:
- $ref: '#/components/schemas/microsoft.graph.teamsApp'
- additionalProperties:
- type: object
- microsoft.graph.teamsApp:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsApp
- type: object
- properties:
- displayName:
- type: string
- description: The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- distributionMethod:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDistributionMethod'
- externalId:
- type: string
- description: The ID of the catalog provided by the app developer in the Microsoft Teams zip app package.
- nullable: true
- appDefinitions:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
- description: The details for each version of the app.
- additionalProperties:
- type: object
- microsoft.graph.teamsAppDefinition:
+ microsoft.graph.teamsAppDefinition:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -29973,6 +29936,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -29998,6 +29962,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.operationError:
@@ -30043,7 +30011,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -30059,7 +30027,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -30376,6 +30344,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30472,7 +30478,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -30785,7 +30791,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -30798,7 +30804,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -30977,20 +30983,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -31014,7 +31025,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -31022,7 +31033,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -31071,13 +31082,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -31185,6 +31196,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -31778,6 +31794,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -31966,13 +31984,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -31981,7 +31999,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -32021,6 +32039,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -32040,7 +32059,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -32062,336 +32081,557 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
type: array
items:
- type: string
- description: List of labels applied to the device by the system.
- trustType:
- type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
- nullable: true
- kind:
- type: string
- nullable: true
- manufacturer:
- type: string
- description: Manufacturer of the device. Read-only.
- nullable: true
- model:
- type: string
- description: Model of the device. Read-only.
- nullable: true
- name:
+ type: string
+ description: List of labels applied to the device by the system.
+ trustType:
+ type: string
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
+ nullable: true
+ kind:
+ type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
+ nullable: true
+ manufacturer:
+ type: string
+ description: Manufacturer of the device. Read-only.
+ nullable: true
+ model:
+ type: string
+ description: Model of the device. Read-only.
+ nullable: true
+ name:
+ type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
+ nullable: true
+ platform:
+ type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
+ nullable: true
+ status:
+ type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
+ nullable: true
+ usageRights:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.usageRight'
+ memberOf:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ registeredOwners:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable.'
+ registeredUsers:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable.'
+ transitiveMemberOf:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ extensions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.extension'
+ description: The collection of open extensions defined for the device. Read-only. Nullable.
+ commands:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.command'
+ description: Set of commands sent to this device
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
+ microsoft.graph.onlineMeeting:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: onlineMeeting
+ type: object
+ properties:
+ accessLevel:
+ $ref: '#/components/schemas/microsoft.graph.accessLevel'
+ allowedPresenters:
+ $ref: '#/components/schemas/microsoft.graph.onlineMeetingPresenters'
+ alternativeRecording:
+ type: string
+ description: The content stream of the alternative recording of a live event. Read-only.
+ format: base64url
+ nullable: true
+ attendeeReport:
+ type: string
+ description: The content stream of the attendee report of a live event. Read-only.
+ format: base64url
+ nullable: true
+ audioConferencing:
+ $ref: '#/components/schemas/microsoft.graph.audioConferencing'
+ broadcastSettings:
+ $ref: '#/components/schemas/microsoft.graph.broadcastMeetingSettings'
+ canceledDateTime:
+ 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
+ format: date-time
+ nullable: true
+ capabilities:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
+ chatInfo:
+ $ref: '#/components/schemas/microsoft.graph.chatInfo'
+ creationDateTime:
+ 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 meeting creation time in UTC. Read-only.
+ format: date-time
+ nullable: true
+ endDateTime:
+ 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 meeting end time in UTC.
+ format: date-time
+ nullable: true
+ entryExitAnnouncement:
+ type: boolean
+ nullable: true
+ 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
+ format: date-time
+ nullable: true
+ externalId:
+ type: string
+ description: The external ID. A custom ID. Optional.
+ nullable: true
+ isBroadcast:
+ type: boolean
+ description: Indicates if this is a live event.
+ nullable: true
+ isCancelled:
+ type: boolean
+ nullable: true
+ isEntryExitAnnounced:
+ type: boolean
+ description: Whether or not to announce when callers join or leave.
+ nullable: true
+ joinInformation:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ joinUrl:
+ type: string
+ nullable: true
+ lobbyBypassSettings:
+ $ref: '#/components/schemas/microsoft.graph.lobbyBypassSettings'
+ participants:
+ $ref: '#/components/schemas/microsoft.graph.meetingParticipants'
+ recording:
+ type: string
+ description: The content stream of the recording of a live event. Read-only.
+ format: base64url
+ nullable: true
+ startDateTime:
+ 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 meeting start time in UTC.
+ format: date-time
+ nullable: true
+ subject:
+ type: string
+ description: The subject of the online meeting.
+ nullable: true
+ videoTeleconferenceId:
+ type: string
+ description: The video teleconferencing ID. Read-only.
+ nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
+ additionalProperties:
+ type: object
+ microsoft.graph.presence:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: presence
+ type: object
+ properties:
+ activity:
+ type: string
+ description: 'The supplemental information to a user''s availability. Possible values are Available, Away, BeRightBack, Busy, DoNotDisturb, InACall, InAConferenceCall, Inactive,InAMeeting, Offline, OffWork,OutOfOffice, PresenceUnknown,Presenting, UrgentInterruptionsOnly.'
+ nullable: true
+ availability:
+ type: string
+ description: 'The base presence information for a user. Possible values are Available, AvailableIdle, Away, BeRightBack, Busy, BusyIdle, DoNotDisturb, Offline, PresenceUnknown'
+ nullable: true
+ outOfOfficeSettings:
+ $ref: '#/components/schemas/microsoft.graph.outOfOfficeSettings'
+ additionalProperties:
+ type: object
+ microsoft.graph.authentication:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: authentication
+ type: object
+ properties:
+ emailMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.emailAuthenticationMethod'
+ fido2Methods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.fido2AuthenticationMethod'
+ methods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.authenticationMethod'
+ microsoftAuthenticatorMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethod'
+ operations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.longRunningOperation'
+ passwordlessMicrosoftAuthenticatorMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod'
+ passwordMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.passwordAuthenticationMethod'
+ phoneMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.phoneAuthenticationMethod'
+ temporaryAccessPassMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.temporaryAccessPassAuthenticationMethod'
+ windowsHelloForBusinessMethods:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.windowsHelloForBusinessAuthenticationMethod'
+ additionalProperties:
+ type: object
+ microsoft.graph.chat:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: chat
+ type: object
+ properties:
+ chatType:
+ $ref: '#/components/schemas/microsoft.graph.chatType'
+ 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: Date and time at which the chat was created. Read-only.
+ format: date-time
nullable: true
- platform:
+ lastUpdatedDateTime:
+ 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 chat was renamed or list of members were last changed. Read-only.
+ format: date-time
nullable: true
- status:
+ topic:
type: string
+ description: (Optional) Subject or topic for the chat. Only available for group chats.
nullable: true
- usageRights:
+ installedApps:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.usageRight'
- memberOf:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
+ description: A collection of all the apps in the chat. Nullable.
+ members:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
- registeredOwners:
+ $ref: '#/components/schemas/microsoft.graph.conversationMember'
+ description: A collection of all the members in the chat. Nullable.
+ messages:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable.'
- registeredUsers:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable.'
- transitiveMemberOf:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
+ tabs:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
- extensions:
+ $ref: '#/components/schemas/microsoft.graph.teamsTab'
+ additionalProperties:
+ type: object
+ microsoft.graph.userTeamwork:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userTeamwork
+ type: object
+ properties:
+ installedApps:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.extension'
- description: The collection of open extensions defined for the device. Read-only. Nullable.
- commands:
+ $ref: '#/components/schemas/microsoft.graph.userScopeTeamsAppInstallation'
+ description: The apps installed in the personal scope of this user.
+ additionalProperties:
+ type: object
+ microsoft.graph.todo:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: todo
+ type: object
+ properties:
+ lists:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.command'
- description: Set of commands sent to this device
+ $ref: '#/components/schemas/microsoft.graph.todoTaskList'
+ description: The task lists in the users mailbox.
additionalProperties:
type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
- microsoft.graph.onlineMeeting:
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: onlineMeeting
+ - title: teamworkTagMember
type: object
properties:
- accessLevel:
- $ref: '#/components/schemas/microsoft.graph.accessLevel'
- allowedPresenters:
- $ref: '#/components/schemas/microsoft.graph.onlineMeetingPresenters'
- alternativeRecording:
+ displayName:
type: string
- description: The content stream of the alternative recording of a live event. Read-only.
- format: base64url
nullable: true
- attendeeReport:
+ tenantId:
type: string
- description: The content stream of the attendee report of a live event. Read-only.
- format: base64url
nullable: true
- audioConferencing:
- $ref: '#/components/schemas/microsoft.graph.audioConferencing'
- broadcastSettings:
- $ref: '#/components/schemas/microsoft.graph.broadcastMeetingSettings'
- canceledDateTime:
- 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])$'
+ userId:
type: string
- format: date-time
nullable: true
- capabilities:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
- chatInfo:
- $ref: '#/components/schemas/microsoft.graph.chatInfo'
- creationDateTime:
+ additionalProperties:
+ type: object
+ microsoft.graph.timeClockSettings:
+ title: timeClockSettings
+ type: object
+ properties:
+ approvedLocation:
+ $ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ additionalProperties:
+ type: object
+ microsoft.graph.offerShiftRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: offerShiftRequest
+ type: object
+ properties:
+ recipientActionDateTime:
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 meeting creation time in UTC. Read-only.
+ description: '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
- endDateTime:
- 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])$'
+ recipientActionMessage:
type: string
- description: The meeting end time in UTC.
- format: date-time
- nullable: true
- entryExitAnnouncement:
- type: boolean
+ description: Custom message sent by recipient of the offer shift request.
nullable: true
- 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])$'
+ recipientUserId:
type: string
- format: date-time
+ description: User id of the recipient of the offer shift request.
nullable: true
- externalId:
+ senderShiftId:
type: string
- description: The external ID. A custom ID. Optional.
- nullable: true
- isBroadcast:
- type: boolean
- description: Indicates if this is a live event.
+ description: User id of the sender of the offer shift request.
nullable: true
- isCancelled:
- type: boolean
+ additionalProperties:
+ type: object
+ microsoft.graph.openShiftChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: openShiftChangeRequest
+ type: object
+ properties:
+ openShiftId:
+ type: string
+ description: ID for the open shift.
nullable: true
- isEntryExitAnnounced:
+ additionalProperties:
+ type: object
+ microsoft.graph.openShift:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: openShift
+ type: object
+ properties:
+ draftOpenShift:
+ $ref: '#/components/schemas/microsoft.graph.openShiftItem'
+ isStagedForDeletion:
type: boolean
- description: Whether or not to announce when callers join or leave.
nullable: true
- joinInformation:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- joinUrl:
+ schedulingGroupId:
type: string
+ description: ID for the scheduling group that the open shift belongs to.
nullable: true
- lobbyBypassSettings:
- $ref: '#/components/schemas/microsoft.graph.lobbyBypassSettings'
- participants:
- $ref: '#/components/schemas/microsoft.graph.meetingParticipants'
- recording:
+ sharedOpenShift:
+ $ref: '#/components/schemas/microsoft.graph.openShiftItem'
+ additionalProperties:
+ type: object
+ microsoft.graph.schedulingGroup:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: schedulingGroup
+ type: object
+ properties:
+ displayName:
type: string
- description: The content stream of the recording of a live event. Read-only.
- format: base64url
+ description: The display name for the schedulingGroup. Required.
nullable: true
- startDateTime:
- 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 meeting start time in UTC.
- format: date-time
+ isActive:
+ type: boolean
+ description: Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.
nullable: true
- subject:
+ userIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: The list of user IDs that are a member of the schedulingGroup. Required.
+ additionalProperties:
+ type: object
+ microsoft.graph.shift:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: shift
+ type: object
+ properties:
+ draftShift:
+ $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ isStagedForDeletion:
+ type: boolean
+ nullable: true
+ schedulingGroupId:
type: string
- description: The subject of the online meeting.
+ description: ID of the scheduling group the shift is part of. Required.
nullable: true
- videoTeleconferenceId:
+ sharedShift:
+ $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ userId:
type: string
- description: The video teleconferencing ID. Read-only.
+ description: ID of the user assigned to the shift. Required.
nullable: true
additionalProperties:
type: object
- microsoft.graph.presence:
+ microsoft.graph.swapShiftsChangeRequest:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: presence
+ - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ - title: swapShiftsChangeRequest
type: object
properties:
- activity:
- type: string
- description: 'The supplemental information to a user''s availability. Possible values are Available, Away, BeRightBack, Busy, DoNotDisturb, InACall, InAConferenceCall, Inactive,InAMeeting, Offline, OffWork,OutOfOffice, PresenceUnknown,Presenting, UrgentInterruptionsOnly.'
- nullable: true
- availability:
+ recipientShiftId:
type: string
- description: 'The base presence information for a user. Possible values are Available, AvailableIdle, Away, BeRightBack, Busy, BusyIdle, DoNotDisturb, Offline, PresenceUnknown'
+ description: Shift ID for the recipient user with whom the request is to swap.
nullable: true
- outOfOfficeSettings:
- $ref: '#/components/schemas/microsoft.graph.outOfOfficeSettings'
additionalProperties:
type: object
- microsoft.graph.authentication:
+ microsoft.graph.timeCard:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: authentication
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeCard
type: object
properties:
- emailMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.emailAuthenticationMethod'
- fido2Methods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.fido2AuthenticationMethod'
- methods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.authenticationMethod'
- microsoftAuthenticatorMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethod'
- operations:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.longRunningOperation'
- passwordlessMicrosoftAuthenticatorMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod'
- passwordMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.passwordAuthenticationMethod'
- phoneMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.phoneAuthenticationMethod'
- temporaryAccessPassMethods:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.temporaryAccessPassAuthenticationMethod'
- windowsHelloForBusinessMethods:
+ breaks:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.windowsHelloForBusinessAuthenticationMethod'
+ $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
+ clockInEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ clockOutEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ confirmedBy:
+ $ref: '#/components/schemas/microsoft.graph.confirmedBy'
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ originalEntry:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
+ state:
+ $ref: '#/components/schemas/microsoft.graph.timeCardState'
+ userId:
+ type: string
+ nullable: true
additionalProperties:
type: object
- microsoft.graph.chat:
+ microsoft.graph.timeOffReason:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: chat
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOffReason
type: object
properties:
- chatType:
- $ref: '#/components/schemas/microsoft.graph.chatType'
- createdDateTime:
+ displayName:
+ type: string
+ description: The name of the timeOffReason. Required.
+ nullable: true
+ iconType:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
+ isActive:
+ type: boolean
+ description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOffRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: timeOffRequest
+ type: object
+ properties:
+ endDateTime:
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 chat was created. Read-only.
+ description: '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
- lastUpdatedDateTime:
+ startDateTime:
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 chat was renamed or list of members were last changed. Read-only.
+ description: '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
- topic:
+ timeOffReasonId:
type: string
- description: (Optional) Subject or topic for the chat. Only available for group chats.
+ description: The reason for the time off.
nullable: true
- installedApps:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
- description: A collection of all the apps in the chat. Nullable.
- members:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.conversationMember'
- description: A collection of all the members in the chat. Nullable.
- messages:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessage'
- description: A collection of all the messages in the chat. Nullable.
- tabs:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.teamsTab'
- additionalProperties:
- type: object
- microsoft.graph.userTeamwork:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: userTeamwork
- type: object
- properties:
- installedApps:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.userScopeTeamsAppInstallation'
- description: The apps installed in the personal scope of this user.
- additionalProperties:
- type: object
- microsoft.graph.todo:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: todo
- type: object
- properties:
- lists:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.todoTaskList'
- description: The task lists in the users mailbox.
additionalProperties:
type: object
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
+ microsoft.graph.timeOff:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOff
type: object
properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
+ draftTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
+ isStagedForDeletion:
+ type: boolean
nullable: true
+ sharedTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
userId:
type: string
+ description: ID of the user assigned to the timeOff. Required.
nullable: true
additionalProperties:
type: object
@@ -32637,6 +32877,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -32649,6 +32897,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -32918,45 +33178,143 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.itemActivity:
+ microsoft.graph.itemActivity:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: itemActivity
+ type: object
+ properties:
+ access:
+ $ref: '#/components/schemas/microsoft.graph.accessAction'
+ activityDateTime:
+ 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: Details about when the activity took place. Read-only.
+ format: date-time
+ nullable: true
+ actor:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ driveItem:
+ $ref: '#/components/schemas/microsoft.graph.driveItem'
+ additionalProperties:
+ type: object
+ microsoft.graph.displayNameLocalization:
+ title: displayNameLocalization
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: 'If present, the value of this field contains the displayName string that has been set for the language present in the languageTag field.'
+ nullable: true
+ languageTag:
+ type: string
+ description: Provides the language culture-code and friendly name of the language that the displayName field has been provided in.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.sitePageData:
+ title: sitePageData
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: itemActivity
+ - title: term
type: object
properties:
- access:
- $ref: '#/components/schemas/microsoft.graph.accessAction'
- activityDateTime:
+ 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: Details about when the activity took place. Read-only.
+ description: Date and time of term creation. Read-only
format: date-time
nullable: true
- actor:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- driveItem:
- $ref: '#/components/schemas/microsoft.graph.driveItem'
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
additionalProperties:
type: object
- microsoft.graph.displayNameLocalization:
- title: displayNameLocalization
- type: object
- properties:
- displayName:
- type: string
- description: 'If present, the value of this field contains the displayName string that has been set for the language present in the languageTag field.'
- nullable: true
- languageTag:
- type: string
- description: Provides the language culture-code and friendly name of the language that the displayName field has been provided in.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.sitePageData:
- title: sitePageData
- type: object
- additionalProperties:
- type: object
microsoft.graph.plannerContainerType:
title: plannerContainerType
enum:
@@ -33163,197 +33521,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.scheduleChangeRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: scheduleChangeRequest
- type: object
- properties:
- assignedTo:
- $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequestActor'
- managerActionDateTime:
- 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
- format: date-time
- nullable: true
- managerActionMessage:
- type: string
- nullable: true
- managerUserId:
- type: string
- nullable: true
- senderDateTime:
- 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
- format: date-time
- nullable: true
- senderMessage:
- type: string
- nullable: true
- senderUserId:
- type: string
- nullable: true
- state:
- $ref: '#/components/schemas/microsoft.graph.scheduleChangeState'
- additionalProperties:
- type: object
- microsoft.graph.changeTrackedEntity:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: changeTrackedEntity
- type: object
- properties:
- 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: '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'''
- format: date-time
- nullable: true
- lastModifiedBy:
- $ref: '#/components/schemas/microsoft.graph.identitySet'
- 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 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'''
- format: date-time
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.openShiftItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.shiftItem'
- - title: openShiftItem
- type: object
- properties:
- openSlotCount:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: Count of the number of slots for the given open shift.
- format: int32
- additionalProperties:
- type: object
- microsoft.graph.shiftItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
- - title: shiftItem
- type: object
- properties:
- activities:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shiftActivity'
- description: 'An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required.'
- displayName:
- type: string
- description: The shift label of the shiftItem.
- nullable: true
- notes:
- type: string
- description: The shift notes for the shiftItem.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeCardBreak:
- title: timeCardBreak
- type: object
- properties:
- breakId:
- type: string
- nullable: true
- end:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- start:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- additionalProperties:
- type: object
- microsoft.graph.timeCardEvent:
- title: timeCardEvent
- type: object
- properties:
- atApprovedLocation:
- type: boolean
- nullable: true
- dateTime:
- 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
- format: date-time
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- additionalProperties:
- type: object
- microsoft.graph.confirmedBy:
- title: confirmedBy
- enum:
- - none
- - user
- - manager
- - unknownFutureValue
- type: string
- microsoft.graph.timeCardEntry:
- title: timeCardEntry
- type: object
- properties:
- breaks:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
- clockInEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- clockOutEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- additionalProperties:
- type: object
- microsoft.graph.timeCardState:
- title: timeCardState
- enum:
- - clockedIn
- - onBreak
- - clockedOut
- - unknownFutureValue
- type: string
- microsoft.graph.timeOffReasonIconType:
- title: timeOffReasonIconType
- enum:
- - none
- - car
- - calendar
- - running
- - plane
- - firstAid
- - doctor
- - notWorking
- - clock
- - juryDuty
- - globe
- - cup
- - phone
- - weather
- - umbrella
- - piggyBank
- - dog
- - cake
- - trafficCone
- - pin
- - sunny
- - unknownFutureValue
- type: string
- microsoft.graph.timeOffItem:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
- - title: timeOffItem
- type: object
- properties:
- timeOffReasonId:
- type: string
- description: ID of the timeOffReason for this timeOffItem. Required.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.replyRestriction:
title: replyRestriction
enum:
@@ -33405,9 +33572,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -33469,7 +33638,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -33480,19 +33649,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: chatMessageHostedContent
- type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ - title: chatMessageHostedContent
+ type: object
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -33525,6 +33684,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -33540,6 +33707,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.automaticRepliesSetting:
title: automaticRepliesSetting
type: object
@@ -33775,7 +33955,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -34128,6 +34308,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -34139,6 +34320,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -34150,36 +34332,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -34196,7 +34381,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -34211,16 +34396,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -34243,7 +34438,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -34263,7 +34458,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -34323,6 +34518,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -34614,11 +34831,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -35488,6 +35706,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -36246,6 +36474,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -36343,6 +36572,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -36390,6 +36631,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -36508,7 +36750,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -36646,6 +36888,206 @@ components:
description: The tasks in this task list. Read-only. Nullable.
additionalProperties:
type: object
+ microsoft.graph.scheduleChangeRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: scheduleChangeRequest
+ type: object
+ properties:
+ assignedTo:
+ $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequestActor'
+ managerActionDateTime:
+ 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
+ format: date-time
+ nullable: true
+ managerActionMessage:
+ type: string
+ nullable: true
+ managerUserId:
+ type: string
+ nullable: true
+ senderDateTime:
+ 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
+ format: date-time
+ nullable: true
+ senderMessage:
+ type: string
+ nullable: true
+ senderUserId:
+ type: string
+ nullable: true
+ state:
+ $ref: '#/components/schemas/microsoft.graph.scheduleChangeState'
+ additionalProperties:
+ type: object
+ microsoft.graph.changeTrackedEntity:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: changeTrackedEntity
+ type: object
+ properties:
+ 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: '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
+ lastModifiedBy:
+ $ref: '#/components/schemas/microsoft.graph.identitySet'
+ 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 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
+ additionalProperties:
+ type: object
+ microsoft.graph.openShiftItem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.shiftItem'
+ - title: openShiftItem
+ type: object
+ properties:
+ openSlotCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Count of the number of slots for the given open shift.
+ format: int32
+ additionalProperties:
+ type: object
+ microsoft.graph.shiftItem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
+ - title: shiftItem
+ type: object
+ properties:
+ activities:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shiftActivity'
+ description: 'An incremental part of a shift which can cover details of when and where an employee is during their shift. For example, an assignment or a scheduled break or lunch. Required.'
+ displayName:
+ type: string
+ description: The shift label of the shiftItem.
+ nullable: true
+ notes:
+ type: string
+ description: The shift notes for the shiftItem.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardBreak:
+ title: timeCardBreak
+ type: object
+ properties:
+ breakId:
+ type: string
+ nullable: true
+ end:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ start:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardEvent:
+ title: timeCardEvent
+ type: object
+ properties:
+ atApprovedLocation:
+ type: boolean
+ nullable: true
+ dateTime:
+ 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
+ format: date-time
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ additionalProperties:
+ type: object
+ microsoft.graph.confirmedBy:
+ title: confirmedBy
+ enum:
+ - none
+ - user
+ - manager
+ - unknownFutureValue
+ type: string
+ microsoft.graph.timeCardEntry:
+ title: timeCardEntry
+ type: object
+ properties:
+ breaks:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCardBreak'
+ clockInEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ clockOutEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ additionalProperties:
+ type: object
+ microsoft.graph.timeCardState:
+ title: timeCardState
+ enum:
+ - clockedIn
+ - onBreak
+ - clockedOut
+ - unknownFutureValue
+ type: string
+ microsoft.graph.timeOffReasonIconType:
+ title: timeOffReasonIconType
+ enum:
+ - none
+ - car
+ - calendar
+ - running
+ - plane
+ - firstAid
+ - doctor
+ - notWorking
+ - clock
+ - juryDuty
+ - globe
+ - cup
+ - phone
+ - weather
+ - umbrella
+ - piggyBank
+ - dog
+ - cake
+ - trafficCone
+ - pin
+ - sunny
+ - unknownFutureValue
+ type: string
+ microsoft.graph.timeOffItem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleEntity'
+ - title: timeOffItem
+ type: object
+ properties:
+ timeOffReasonId:
+ type: string
+ description: ID of the timeOffReason for this timeOffItem. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -36819,6 +37261,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.plannerTeamsPublicationInfo:
title: plannerTeamsPublicationInfo
type: object
@@ -36862,73 +37342,6 @@ components:
type: object
additionalProperties:
type: object
- microsoft.graph.scheduleChangeRequestActor:
- title: scheduleChangeRequestActor
- enum:
- - sender
- - recipient
- - manager
- - system
- - unknownFutureValue
- type: string
- microsoft.graph.scheduleChangeState:
- title: scheduleChangeState
- enum:
- - pending
- - approved
- - declined
- - unknownFutureValue
- type: string
- microsoft.graph.scheduleEntity:
- title: scheduleEntity
- type: object
- properties:
- endDateTime:
- 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
- format: date-time
- nullable: true
- startDateTime:
- 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
- format: date-time
- nullable: true
- theme:
- $ref: '#/components/schemas/microsoft.graph.scheduleEntityTheme'
- additionalProperties:
- type: object
- microsoft.graph.shiftActivity:
- title: shiftActivity
- type: object
- properties:
- code:
- type: string
- description: Customer defined code for the shiftActivity. Required.
- nullable: true
- displayName:
- type: string
- description: The name of the shiftActivity. Required.
- nullable: true
- endDateTime:
- 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 end date and time for the shiftActivity. 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''. Required.'
- format: date-time
- nullable: true
- isPaid:
- type: boolean
- description: Indicates whether the microsoft.graph.user should be paid for the activity during their shift. Required.
- nullable: true
- startDateTime:
- 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 start date and time for the shiftActivity. 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''. Required.'
- format: date-time
- nullable: true
- theme:
- $ref: '#/components/schemas/microsoft.graph.scheduleEntityTheme'
- additionalProperties:
- type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -36972,6 +37385,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.externalAudienceScope:
title: externalAudienceScope
enum:
@@ -37145,7 +37575,7 @@ 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 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''.'
+ description: '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
message:
@@ -37451,6 +37881,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -37462,10 +37910,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -38114,6 +38570,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -38121,6 +38578,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.shiftAvailability:
@@ -38443,6 +38901,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -38546,6 +39028,73 @@ components:
description: A collection of resources linked to the task.
additionalProperties:
type: object
+ microsoft.graph.scheduleChangeRequestActor:
+ title: scheduleChangeRequestActor
+ enum:
+ - sender
+ - recipient
+ - manager
+ - system
+ - unknownFutureValue
+ type: string
+ microsoft.graph.scheduleChangeState:
+ title: scheduleChangeState
+ enum:
+ - pending
+ - approved
+ - declined
+ - unknownFutureValue
+ type: string
+ microsoft.graph.scheduleEntity:
+ title: scheduleEntity
+ type: object
+ properties:
+ endDateTime:
+ 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
+ format: date-time
+ nullable: true
+ startDateTime:
+ 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
+ format: date-time
+ nullable: true
+ theme:
+ $ref: '#/components/schemas/microsoft.graph.scheduleEntityTheme'
+ additionalProperties:
+ type: object
+ microsoft.graph.shiftActivity:
+ title: shiftActivity
+ type: object
+ properties:
+ code:
+ type: string
+ description: Customer defined code for the shiftActivity. Required.
+ nullable: true
+ displayName:
+ type: string
+ description: The name of the shiftActivity. Required.
+ nullable: true
+ endDateTime:
+ 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 end date and time for the shiftActivity. 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. Required.'
+ format: date-time
+ nullable: true
+ isPaid:
+ type: boolean
+ description: Indicates whether the microsoft.graph.user should be paid for the activity during their shift. Required.
+ nullable: true
+ startDateTime:
+ 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 start date and time for the shiftActivity. 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. Required.'
+ format: date-time
+ nullable: true
+ theme:
+ $ref: '#/components/schemas/microsoft.graph.scheduleEntityTheme'
+ additionalProperties:
+ type: object
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -38751,23 +39300,6 @@ components:
description: Represents the worksheet protection option of allowing using sort feature.
additionalProperties:
type: object
- microsoft.graph.scheduleEntityTheme:
- title: scheduleEntityTheme
- enum:
- - white
- - blue
- - green
- - purple
- - pink
- - yellow
- - gray
- - darkBlue
- - darkGreen
- - darkPurple
- - darkPink
- - darkYellow
- - unknownFutureValue
- type: string
microsoft.graph.volumeType:
title: volumeType
enum:
@@ -39101,6 +39633,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -39196,6 +39729,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -39220,6 +39775,23 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.scheduleEntityTheme:
+ title: scheduleEntityTheme
+ enum:
+ - white
+ - blue
+ - green
+ - purple
+ - pink
+ - yellow
+ - gray
+ - darkBlue
+ - darkGreen
+ - darkPurple
+ - darkPink
+ - darkYellow
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookFilterCriteria:
title: workbookFilterCriteria
type: object
diff --git a/openApiDocs/beta/Identity.DirectoryManagement.yml b/openApiDocs/beta/Identity.DirectoryManagement.yml
index 4a908d914fa..7684ed07ef0 100644
--- a/openApiDocs/beta/Identity.DirectoryManagement.yml
+++ b/openApiDocs/beta/Identity.DirectoryManagement.yml
@@ -11526,7 +11526,7 @@ components:
nullable: true
visibility:
type: string
- description: 'Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.'
+ description: 'Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.'
nullable: true
members:
type: array
@@ -11625,7 +11625,7 @@ components:
onPremisesLastSyncDateTime:
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 when this organizational contact was last synchronized from on-premises AD. 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''.'
+ description: 'Date and time when this organizational contact was last synchronized from on-premises AD. 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
onPremisesProvisioningErrors:
@@ -11678,7 +11678,7 @@ components:
properties:
contractType:
type: string
- description: 'Type of contract.Possible values are: SyndicationPartner - Partner that exclusively resells and manages O365 and Intune for this customer. They resell and support their customers. BreadthPartner - Partner has the ability to provide administrative support for this customer. However, the partner is not allowed to resell to the customer.ResellerPartner - Partner that is similar to a syndication partner, except that the partner doesn’t have exclusive access to a tenant. In the syndication case, the customer cannot buy additional direct subscriptions from Microsoft or from other partners.'
+ description: 'Type of contract. Possible values are: SyndicationPartner, BreadthPartner, ResellerPartner. See more in the table below.'
nullable: true
customerId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -11715,13 +11715,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -11730,7 +11730,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -11770,6 +11770,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -11789,7 +11790,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -11811,12 +11812,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -11826,10 +11827,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -11841,12 +11843,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -11856,7 +11861,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -12076,7 +12081,7 @@ components:
properties:
authenticationType:
type: string
- description: Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication.Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This propert is read-only and is not nullable.
+ description: Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This property is read-only and is not nullable.
availabilityStatus:
type: string
description: 'This property is always null except when the verify action is used. When the verify action is used, a domain entity is returned in the response. The availabilityStatus property of the domain entity in the response is either AvailableImmediately or EmailVerifiedDomainTakeoverScheduled.'
@@ -12086,16 +12091,16 @@ components:
description: 'The value of the property is false if the DNS record management of the domain has been delegated to Microsoft 365. Otherwise, the value is true. Not nullable'
isDefault:
type: boolean
- description: True if this is the default domain that is used for user creation. There is only one default domain per company. Not nullable
+ description: true if this is the default domain that is used for user creation. There is only one default domain per company. Not nullable
isInitial:
type: boolean
- description: True if this is the initial domain created by Microsoft Online Services (companyname.onmicrosoft.com). There is only one initial domain per company. Not nullable
+ description: true if this is the initial domain created by Microsoft Online Services (companyname.onmicrosoft.com). There is only one initial domain per company. Not nullable
isRoot:
type: boolean
- description: 'True if the domain is a verified root domain. Otherwise, false if the domain is a subdomain or unverified. Not nullable'
+ description: 'true if the domain is a verified root domain. Otherwise, false if the domain is a subdomain or unverified. Not nullable'
isVerified:
type: boolean
- description: True if the domain has completed domain ownership verification. Not nullable
+ description: true if the domain has completed domain ownership verification. Not nullable
passwordNotificationWindowInDays:
maximum: 2147483647
minimum: -2147483648
@@ -12116,7 +12121,7 @@ components:
type: array
items:
type: string
- description: 'The capabilities assigned to the domain.Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune The values which you can add/remove using Graph API include: Email, OfficeCommunicationsOnline, YammerNot nullable'
+ description: 'The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline,SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values which you can add/remove using Graph API include: Email, OfficeCommunicationsOnline, Yammer. Not nullable'
domainNameReferences:
type: array
items:
@@ -12126,7 +12131,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.domainDnsRecord'
- description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services.Read-only, Nullable'
+ description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services. Read-only, Nullable'
sharedEmailDomainInvitations:
type: array
items:
@@ -12135,7 +12140,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.domainDnsRecord'
- description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD.Read-only, Nullable'
+ description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD. Read-only, Nullable'
additionalProperties:
type: object
microsoft.graph.domainDnsRecord:
@@ -12199,7 +12204,7 @@ components:
type: array
items:
type: string
- description: 'Telephone number for the organization. Note: Although this is a string collection, only one number can be set for this property.'
+ description: 'Telephone number for the organization. Although this is a string collection, only one number can be set for this property.'
city:
type: string
description: City name of the address for the organization.
@@ -12215,7 +12220,7 @@ 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: 'Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only.'
+ description: 'Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization 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. Read-only.'
format: date-time
nullable: true
directorySizeQuota:
@@ -12236,12 +12241,12 @@ components:
onPremisesLastSyncDateTime:
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 time and date at which the tenant was last synced with the on-premise directory. 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''.'
+ description: 'The time and date at which the tenant was last synced with the on-premise directory. 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
onPremisesSyncEnabled:
type: boolean
- description: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default).
+ description: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; Nullable. null if this object has never been synced from an on-premises directory (default).
nullable: true
postalCode:
type: string
@@ -12249,7 +12254,7 @@ components:
nullable: true
preferredLanguage:
type: string
- description: The preferred language for the organization. Should follow ISO 639-1 Code; for example 'en'.
+ description: The preferred language for the organization. Should follow ISO 639-1 Code; for example en.
nullable: true
privacyProfile:
$ref: '#/components/schemas/microsoft.graph.privacyProfile'
@@ -12630,8 +12635,8 @@ components:
- passthroughAuthentication
- seamlessSso
- passwordHashSync
- - unknownFutureValue
- emailAsAlternateId
+ - unknownFutureValue
type: string
microsoft.graph.settingTemplateValue:
title: settingTemplateValue
@@ -12682,7 +12687,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
diff --git a/openApiDocs/beta/Identity.Governance.yml b/openApiDocs/beta/Identity.Governance.yml
index bf9a4b74464..4d491e7389c 100644
--- a/openApiDocs/beta/Identity.Governance.yml
+++ b/openApiDocs/beta/Identity.Governance.yml
@@ -1963,6 +1963,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2081,6 +2082,8 @@ paths:
- id desc
- createdDateTime
- createdDateTime desc
+ - displayName
+ - displayName desc
- fileData
- fileData desc
- fileName
@@ -2104,6 +2107,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2210,6 +2214,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2350,6 +2355,8 @@ paths:
- id desc
- createdDateTime
- createdDateTime desc
+ - displayName
+ - displayName desc
- fileData
- fileData desc
- fileName
@@ -2373,6 +2380,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2491,6 +2499,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2630,6 +2639,8 @@ paths:
- id desc
- createdDateTime
- createdDateTime desc
+ - displayName
+ - displayName desc
- fileData
- fileData desc
- fileName
@@ -2653,6 +2664,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2759,6 +2771,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -2899,6 +2912,8 @@ paths:
- id desc
- createdDateTime
- createdDateTime desc
+ - displayName
+ - displayName desc
- fileData
- fileData desc
- fileName
@@ -2922,6 +2937,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -3040,6 +3056,7 @@ paths:
enum:
- id
- createdDateTime
+ - displayName
- fileData
- fileName
- isDefault
@@ -3423,6 +3440,55 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions':
+ post:
+ tags:
+ - identityGovernance.Actions
+ summary: Invoke action batchRecordDecisions
+ operationId: identityGovernance.accessReviews.definitions.instances_batchRecordDecisions
+ parameters:
+ - name: accessReviewScheduleDefinition-id
+ in: path
+ description: 'key: id of accessReviewScheduleDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessReviewScheduleDefinition
+ - name: accessReviewInstance-id
+ in: path
+ description: 'key: id of accessReviewInstance'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessReviewInstance
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ decision:
+ type: string
+ nullable: true
+ justification:
+ type: string
+ nullable: true
+ principalId:
+ type: string
+ nullable: true
+ resourceId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.resetDecisions':
post:
tags:
@@ -3524,6 +3590,87 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/microsoft.graph.generateDownloadUri':
+ post:
+ tags:
+ - identityGovernance.Actions
+ summary: Invoke action generateDownloadUri
+ operationId: identityGovernance.accessReviews.historyDefinitions_generateDownloadUri
+ parameters:
+ - name: accessReviewHistoryDefinition-id
+ in: path
+ description: 'key: id of accessReviewHistoryDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessReviewHistoryDefinition
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDefinition'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.appConsent.appConsentRequests.userConsentRequests_filterByCurrentUser
+ parameters:
+ - name: appConsentRequest-id
+ in: path
+ description: 'key: id of appConsentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: appConsentRequest
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.appConsent.appConsentRequests_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
/identityGovernance/entitlementManagement:
get:
tags:
@@ -3885,6 +4032,8 @@ paths:
enum:
- id
- id desc
+ - assignedToMe
+ - assignedToMe desc
- displayName
- displayName desc
- justification
@@ -3895,6 +4044,8 @@ paths:
- reviewedDateTime desc
- reviewResult
- reviewResult desc
+ - status
+ - status desc
type: string
- name: $select
in: query
@@ -3907,11 +4058,13 @@ paths:
items:
enum:
- id
+ - assignedToMe
- displayName
- justification
- reviewedBy
- reviewedDateTime
- reviewResult
+ - status
type: string
- name: $expand
in: query
@@ -4010,11 +4163,13 @@ paths:
items:
enum:
- id
+ - assignedToMe
- displayName
- justification
- reviewedBy
- reviewedDateTime
- reviewResult
+ - status
type: string
- name: $expand
in: query
@@ -12751,6 +12906,38 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignmentPolicy-id
+ in: path
+ description: 'key: id of accessPackageAssignmentPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentPolicy
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -19134,6 +19321,45 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignmentRequest-id
+ in: path
+ description: 'key: id of accessPackageAssignmentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentRequest
+ - name: accessPackageAssignmentPolicy-id
+ in: path
+ description: 'key: id of accessPackageAssignmentPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentPolicy
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -30542,6 +30768,38 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignmentRequest-id
+ in: path
+ description: 'key: id of accessPackageAssignmentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentRequest
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -30864,12 +31122,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.Cancel':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.cancel':
post:
tags:
- identityGovernance.Actions
- summary: Invoke action Cancel
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentRequests_Cancel
+ summary: Invoke action cancel
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentRequests_cancel
parameters:
- name: accessPackageAssignmentRequest-id
in: path
@@ -30891,12 +31149,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
- '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentRequests_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentRequests_filterByCurrentUser
parameters:
- name: accessPackageAssignmentRequest-id
in: path
@@ -30905,6 +31163,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignmentRequest
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -31544,12 +31808,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageAssignments_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.accessPackageAssignment.accessPackageAssignmentResourceRoles.accessPackageAssignments_filterByCurrentUser
parameters:
- name: accessPackageAssignmentRequest-id
in: path
@@ -31565,6 +31829,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignmentResourceRole
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -34644,12 +34914,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel':
post:
tags:
- identityGovernance.Actions
- summary: Invoke action Cancel
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_Cancel
+ summary: Invoke action cancel
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_cancel
parameters:
- name: accessPackageAssignmentRequest-id
in: path
@@ -34931,12 +35201,19 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.My():
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -42011,6 +42288,52 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignmentResourceRole-id
+ in: path
+ description: 'key: id of accessPackageAssignmentResourceRole'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentResourceRole
+ - name: accessPackageAssignment-id
+ in: path
+ description: 'key: id of accessPackageAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignment
+ - name: accessPackageAssignmentPolicy-id
+ in: path
+ description: 'key: id of accessPackageAssignmentPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentPolicy
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -54977,6 +55300,45 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignmentResourceRole-id
+ in: path
+ description: 'key: id of accessPackageAssignmentResourceRole'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentResourceRole
+ - name: accessPackageAssignment-id
+ in: path
+ description: 'key: id of accessPackageAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignment
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -55767,12 +56129,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel':
post:
tags:
- identityGovernance.Actions
- summary: Invoke action Cancel
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_Cancel
+ summary: Invoke action cancel
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_cancel
parameters:
- name: accessPackageAssignmentResourceRole-id
in: path
@@ -56176,12 +56538,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments.accessPackageAssignmentRequests_filterByCurrentUser
parameters:
- name: accessPackageAssignmentResourceRole-id
in: path
@@ -56197,6 +56559,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignment
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -56879,12 +57247,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageAssignments_filterByCurrentUser
parameters:
- name: accessPackageAssignmentResourceRole-id
in: path
@@ -56893,6 +57261,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignmentResourceRole
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -65365,6 +65739,45 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignment-id
+ in: path
+ description: 'key: id of accessPackageAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignment
+ - name: accessPackageAssignmentPolicy-id
+ in: path
+ description: 'key: id of accessPackageAssignmentPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentPolicy
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -76773,6 +77186,38 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageAssignment-id
+ in: path
+ description: 'key: id of accessPackageAssignment'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignment
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -77458,12 +77903,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel':
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel':
post:
tags:
- identityGovernance.Actions
- summary: Invoke action Cancel
- operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_Cancel
+ summary: Invoke action cancel
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_cancel
parameters:
- name: accessPackageAssignment-id
in: path
@@ -77806,12 +78251,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_filterByCurrentUser
parameters:
- name: accessPackageAssignment-id
in: path
@@ -77820,6 +78265,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignment
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -78459,12 +78910,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()':
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageAssignments_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageAssignments_filterByCurrentUser
parameters:
- name: accessPackageAssignment-id
in: path
@@ -78480,6 +78931,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: accessPackageAssignmentResourceRole
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -81559,12 +82016,19 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.My():
+ '/identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
- identityGovernance.Functions
- summary: Invoke function My
- operationId: identityGovernance.entitlementManagement.accessPackageAssignments_My
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageAssignments_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions'
responses:
'200':
description: Success
@@ -90315,6 +90779,38 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackageCatalog-id
+ in: path
+ description: 'key: id of accessPackageCatalog'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageCatalog
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -100981,6 +101477,45 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.accessPackageCatalog.accessPackages_filterByCurrentUser
+ parameters:
+ - name: accessPackage-id
+ in: path
+ description: 'key: id of accessPackage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackage
+ - name: accessPackageAssignmentPolicy-id
+ in: path
+ description: 'key: id of accessPackageAssignmentPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessPackageAssignmentPolicy
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()':
get:
tags:
@@ -103905,6 +104440,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/entitlementManagement/accessPackages/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.entitlementManagement.accessPackages_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessPackage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
/identityGovernance/entitlementManagement/accessPackages/microsoft.graph.Search():
get:
tags:
@@ -110136,13 +110696,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -110208,6 +110768,97 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewHistoryDefinition:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: accessReviewHistoryDefinition
+ type: object
+ properties:
+ createdBy:
+ $ref: '#/components/schemas/microsoft.graph.userIdentity'
+ 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
+ format: date-time
+ decisions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDecisionFilter'
+ displayName:
+ type: string
+ downloadUri:
+ type: string
+ nullable: true
+ fulfilledDateTime:
+ 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
+ format: date-time
+ nullable: true
+ reviewHistoryPeriodEndDateTime:
+ 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
+ format: date-time
+ reviewHistoryPeriodStartDateTime:
+ 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
+ format: date-time
+ scopes:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewScope'
+ status:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus'
+ additionalProperties:
+ type: object
+ microsoft.graph.consentRequestFilterByCurrentUserOptions:
+ title: consentRequestFilterByCurrentUserOptions
+ enum:
+ - reviewer
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.request'
+ - title: userConsentRequest
+ type: object
+ properties:
+ reason:
+ type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
+ nullable: true
+ approval:
+ $ref: '#/components/schemas/microsoft.graph.approval'
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: appConsentRequest
+ type: object
+ properties:
+ appDisplayName:
+ type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
+ nullable: true
+ appId:
+ type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
+ consentType:
+ type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
+ nullable: true
+ pendingScopes:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
+ userConsentRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
+ additionalProperties:
+ type: object
microsoft.graph.entitlementManagement:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -110284,21 +110935,33 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
@@ -110333,7 +110996,7 @@ 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 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'''
+ description: '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
description:
@@ -110354,7 +111017,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: 'The expiration date for assignments created in this policy. 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'''
+ description: 'The expiration date for assignments created in this policy. 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
modifiedBy:
@@ -110364,7 +111027,7 @@ components:
modifiedDateTime:
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 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'''
+ description: '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
questions:
@@ -110399,7 +111062,7 @@ 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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
description:
@@ -110425,7 +111088,7 @@ components:
modifiedDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
accessPackageAssignmentPolicies:
@@ -110463,7 +111126,7 @@ 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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
description:
@@ -110485,7 +111148,7 @@ components:
modifiedDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
accessPackageResourceRoles:
@@ -110547,7 +111210,7 @@ components:
addedOn:
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 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'''
+ description: '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
attributes:
@@ -110611,7 +111274,7 @@ 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 that this object was created. The DateTimeOffset 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 that this object was created. The DateTimeOffset 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
description:
@@ -110633,7 +111296,7 @@ components:
modifiedDateTime:
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 that this object was last modified. The DateTimeOffset 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 that this object was last modified. The DateTimeOffset 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
originId:
@@ -110700,7 +111363,7 @@ 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 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'''
+ description: '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
modifiedBy:
@@ -110710,7 +111373,7 @@ components:
modifiedDateTime:
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 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'''
+ description: '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
accessPackageResourceRole:
@@ -110719,6 +111382,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope'
additionalProperties:
type: object
+ microsoft.graph.accessPackageFilterByCurrentUserOptions:
+ title: accessPackageFilterByCurrentUserOptions
+ enum:
+ - allowedRequestor
+ - unknownFutureValue
+ type: string
microsoft.graph.accessPackageAssignmentRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -110733,13 +111402,13 @@ components:
completedDate:
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 of the end of processing, either successful or failure, of a request. 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''. Read-only.'
+ description: 'The date of the end of processing, either successful or failure, of a request. 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. Read-only.'
format: date-time
nullable: true
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
expirationDateTime:
@@ -110806,7 +111475,7 @@ components:
expiredDateTime:
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 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'''
+ description: '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
isExtended:
@@ -110836,6 +111505,14 @@ components:
$ref: '#/components/schemas/microsoft.graph.accessPackageSubject'
additionalProperties:
type: object
+ microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions:
+ title: accessPackageAssignmentRequestFilterByCurrentUserOptions
+ enum:
+ - target
+ - createdBy
+ - approver
+ - unknownFutureValue
+ type: string
microsoft.graph.accessPackageAssignmentResourceRole:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -110867,6 +111544,13 @@ components:
$ref: '#/components/schemas/microsoft.graph.accessPackageSubject'
additionalProperties:
type: object
+ microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions:
+ title: accessPackageAssignmentFilterByCurrentUserOptions
+ enum:
+ - target
+ - createdBy
+ - unknownFutureValue
+ type: string
microsoft.graph.accessPackageSubject:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -110919,7 +111603,7 @@ 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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
description:
@@ -110941,7 +111625,7 @@ components:
modifiedDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
state:
@@ -110974,7 +111658,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: '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'''
+ description: '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
isValidationOnly:
@@ -111137,7 +111821,7 @@ components:
properties:
assignmentState:
type: string
- description: 'Required. The state of the assignment. The value can be Eligible for eligible assignment Active - if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.'
+ description: 'Required. The state of the assignment. The possible values are: Eligible (for eligible assignment), Active (if it is directly assigned), Active (by administrators, or activated on an eligible assignment by the users).'
linkedEligibleRoleAssignmentId:
type: string
description: 'If this is a request for role activation, it represents the id of the eligible assignment being referred; Otherwise, the value is null.'
@@ -111149,7 +111833,7 @@ components:
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: 'Read-only. The request create 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'''
+ description: 'Read-only. The request create 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 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
resourceId:
@@ -111170,7 +111854,7 @@ components:
nullable: true
type:
type: string
- description: 'Required. Representing the type of the operation on the role assignment. The value can be AdminAdd: Administrators assign users/groups to roles;UserAdd: Users activate eligible assignments; AdminUpdate: Administrators change existing role assignmentsAdminRemove: Administrators remove users/groups from roles;UserRemove: Users deactivate active assignments;UserExtend: Users request to extend their expiring assignments;AdminExtend: Administrators extend expiring assignments.UserRenew: Users request to renew their expired assignments;AdminRenew: Administrators extend expiring assignments.'
+ description: 'Required. Representing the type of the operation on the role assignment. The possible values are: AdminAdd , UserAdd , AdminUpdate , AdminRemove , UserRemove , UserExtend , AdminExtend , UserRenew , AdminRenew.'
resource:
$ref: '#/components/schemas/microsoft.graph.governanceResource'
roleDefinition:
@@ -111187,11 +111871,11 @@ components:
properties:
assignmentState:
type: string
- description: 'The state of the assignment. The value can be Eligible for eligible assignment Active - if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.'
+ description: 'The state of the assignment. The value can be Eligible for eligible assignment or Active if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.'
endDateTime:
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: 'For a non-permanent role assignment, this is the time when the role assignment will be expired. 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'''
+ description: 'For a non-permanent role assignment, this is the time when the role assignment will be expired. 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
externalId:
@@ -111204,7 +111888,7 @@ components:
nullable: true
memberType:
type: string
- description: 'The type of member. The value can be: Inherited - the role assignment is inherited from a parent resource scopeGroup- the role assignment is not inherited, but comes from the membership of a group assignmentUser - the role assignment is neither inherited nor from a group assignment.'
+ description: 'The type of member. The value can be: Inherited (if the role assignment is inherited from a parent resource scope), Group (if the role assignment is not inherited, but comes from the membership of a group assignment), or User (if the role assignment is neither inherited nor from a group assignment).'
resourceId:
type: string
description: Required. The ID of the resource which the role assignment is associated with.
@@ -111216,7 +111900,7 @@ components:
startDateTime:
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 start time of the role assignment. 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'''
+ description: 'The start time of the role assignment. 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
status:
@@ -111289,7 +111973,7 @@ components:
lastUpdatedDateTime:
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. The time when the role setting was last updated. 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'''
+ description: 'Read-only. The time when the role setting was last updated. 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
resourceId:
@@ -111338,7 +112022,7 @@ components:
endDateTime:
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 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'''
+ description: '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
requestorReason:
@@ -111350,7 +112034,7 @@ components:
startDateTime:
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 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'''
+ description: '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
userId:
@@ -111383,7 +112067,7 @@ components:
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: 'Read-only. The request create 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''.'
+ description: 'Read-only. The request create 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 is 2014-01-01T00:00:00Z.'
format: date-time
nullable: true
roleId:
@@ -111456,7 +112140,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: 'This is only used when the requestType is ''Activate'', and it indicates the expiration time for the role activation.'
+ description: 'This is only used when the requestType is Activate, and it indicates the expiration time for the role activation.'
format: date-time
nullable: true
referenceKey:
@@ -111477,7 +112161,7 @@ components:
nullable: true
requestType:
type: string
- description: 'The request operation type. The requestType value can be: Assign (role assignment), Activate (role activation), Unassign (remove role assignment), Deactivate (role deactivation), ScanAlersNow (scan security alerts), DismissAlert (dismiss security alert), FixAlertItem (fix a security alert issue), AccessReview_Review (review an Access Review), AccessReview_Create (create an Access Review), AccessReview_Update (update an Access Review), and AccessReview_Delete (delete an Access Review).'
+ description: 'The request operation type. The requestType value can be: Assign (role assignment), Activate (role activation), Unassign (remove role assignment), Deactivate (role deactivation), ScanAlertsNow (scan security alerts), DismissAlert (dismiss security alert), FixAlertItem (fix a security alert issue), AccessReview_Review (review an Access Review), AccessReview_Create (create an Access Review) , AccessReview_Update (update an Access Review), AccessReview_Delete (delete an Access Review).'
nullable: true
roleId:
type: string
@@ -111782,7 +112466,7 @@ components:
startDateTime:
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 DateTime when the agreement is set to expire for all users. 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''.'
+ description: 'The DateTime when the agreement is set to expire for all users. 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
additionalProperties:
@@ -111805,6 +112489,9 @@ components:
type: string
format: date-time
nullable: true
+ displayName:
+ type: string
+ nullable: true
fileData:
$ref: '#/components/schemas/microsoft.graph.agreementFileData'
fileName:
@@ -111821,6 +112508,68 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewHistoryDecisionFilter:
+ title: accessReviewHistoryDecisionFilter
+ enum:
+ - approve
+ - deny
+ - notReviewed
+ - dontKnow
+ - notNotified
+ - unknownFutureValue
+ type: string
+ microsoft.graph.accessReviewScope:
+ title: accessReviewScope
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.accessReviewHistoryStatus:
+ title: accessReviewHistoryStatus
+ enum:
+ - done
+ - inprogress
+ - error
+ - requested
+ - unknownFutureValue
+ type: string
+ microsoft.graph.request:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: request
+ type: object
+ properties:
+ approvalId:
+ type: string
+ nullable: true
+ 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
+ format: date-time
+ 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
+ format: date-time
+ nullable: true
+ customData:
+ type: string
+ nullable: true
+ status:
+ type: string
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequestScope:
+ title: appConsentRequestScope
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the scope.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.assignmentReviewSettings:
title: assignmentReviewSettings
type: object
@@ -111975,7 +112724,7 @@ components:
startDateTime:
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 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''.'
+ description: '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
additionalProperties:
@@ -112005,13 +112754,13 @@ components:
endDateTime:
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 end time of the role assignment. 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''. Note: if the value is null, it indicates a permanent assignment.'
+ description: 'The end time of the role assignment. 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. Note: if the value is null, it indicates a permanent assignment.'
format: date-time
nullable: true
startDateTime:
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 start time of the role assignment. 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'''
+ description: 'The start time of the role assignment. 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
type:
@@ -112156,6 +112905,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.identitySet:
+ title: identitySet
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ device:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ user:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ additionalProperties:
+ type: object
microsoft.graph.userSet:
title: userSet
type: object
@@ -112242,7 +113003,7 @@ components:
endDateTime:
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 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''.'
+ description: '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
type:
diff --git a/openApiDocs/beta/Identity.SignIns.yml b/openApiDocs/beta/Identity.SignIns.yml
index 10bce21141c..3d76939bd99 100644
--- a/openApiDocs/beta/Identity.SignIns.yml
+++ b/openApiDocs/beta/Identity.SignIns.yml
@@ -1764,6 +1764,71 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ /informationProtection/microsoft.graph.decryptBuffer:
+ post:
+ tags:
+ - informationProtection.Actions
+ summary: Invoke action decryptBuffer
+ operationId: informationProtection_decryptBuffer
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ encryptedBuffer:
+ type: string
+ format: base64url
+ publishingLicense:
+ type: string
+ format: base64url
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.bufferDecryptionResult'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ /informationProtection/microsoft.graph.encryptBuffer:
+ post:
+ tags:
+ - informationProtection.Actions
+ summary: Invoke action encryptBuffer
+ operationId: informationProtection_encryptBuffer
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ buffer:
+ type: string
+ format: base64url
+ labelId:
+ pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
+ type: string
+ format: uuid
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.bufferEncryptionResult'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
/informationProtection/policy:
get:
tags:
@@ -3693,6 +3758,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -3764,6 +3830,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -3859,6 +3926,10 @@ paths:
operationId: invitations.InvitedUser.ListMemberOf
parameters:
invitation-id: $request.path.invitation-id
+ oauth2PermissionGrants:
+ operationId: invitations.InvitedUser.ListOauth2PermissionGrants
+ parameters:
+ invitation-id: $request.path.invitation-id
ownedDevices:
operationId: invitations.InvitedUser.ListOwnedDevices
parameters:
@@ -4120,6 +4191,10 @@ paths:
operationId: invitations.InvitedUser.ListMemberOf
parameters:
invitation-id: $request.path.invitation-id
+ oauth2PermissionGrants:
+ operationId: invitations.InvitedUser.ListOauth2PermissionGrants
+ parameters:
+ invitation-id: $request.path.invitation-id
ownedDevices:
operationId: invitations.InvitedUser.ListOwnedDevices
parameters:
@@ -4811,9 +4886,9 @@ paths:
- claimsMappingPolicies
- homeRealmDiscoveryPolicies
- permissionGrantPolicies
- - privateLinkResourcePolicies
- tokenIssuancePolicies
- tokenLifetimePolicies
+ - featureRolloutPolicies
- adminConsentRequestPolicy
- directoryRoleAccessReviewPolicy
- conditionalAccessPolicies
@@ -4840,9 +4915,9 @@ paths:
- claimsMappingPolicies
- homeRealmDiscoveryPolicies
- permissionGrantPolicies
- - privateLinkResourcePolicies
- tokenIssuancePolicies
- tokenLifetimePolicies
+ - featureRolloutPolicies
- adminConsentRequestPolicy
- directoryRoleAccessReviewPolicy
- conditionalAccessPolicies
@@ -4874,12 +4949,12 @@ paths:
operationId: policies.ListHomeRealmDiscoveryPolicies
permissionGrantPolicies:
operationId: policies.ListPermissionGrantPolicies
- privateLinkResourcePolicies:
- operationId: policies.ListPrivateLinkResourcePolicies
tokenIssuancePolicies:
operationId: policies.ListTokenIssuancePolicies
tokenLifetimePolicies:
operationId: policies.ListTokenLifetimePolicies
+ featureRolloutPolicies:
+ operationId: policies.ListFeatureRolloutPolicies
adminConsentRequestPolicy:
operationId: policies.GetAdminConsentRequestPolicy
directoryRoleAccessReviewPolicy:
@@ -5318,6 +5393,7 @@ paths:
- lastModifiedDateTime
- policyVersion
- reconfirmationInDays
+ - registrationEnforcement
- authenticationMethodConfigurations
type: string
- name: $expand
@@ -6222,12 +6298,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /policies/homeRealmDiscoveryPolicies:
+ /policies/featureRolloutPolicies:
get:
tags:
- - policies.homeRealmDiscoveryPolicy
- summary: Get homeRealmDiscoveryPolicies from policies
- operationId: policies_ListHomeRealmDiscoveryPolicies
+ - policies.featureRolloutPolicy
+ summary: Get featureRolloutPolicies from policies
+ operationId: policies_ListFeatureRolloutPolicies
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
@@ -6246,16 +6322,16 @@ paths:
enum:
- id
- id desc
- - deletedDateTime
- - deletedDateTime desc
- description
- description desc
- displayName
- displayName desc
- - definition
- - definition desc
- - isOrganizationDefault
- - isOrganizationDefault desc
+ - feature
+ - feature desc
+ - isAppliedToOrganization
+ - isAppliedToOrganization desc
+ - isEnabled
+ - isEnabled desc
type: string
- name: $select
in: query
@@ -6268,11 +6344,11 @@ paths:
items:
enum:
- id
- - deletedDateTime
- description
- displayName
- - definition
- - isOrganizationDefault
+ - feature
+ - isAppliedToOrganization
+ - isEnabled
- appliesTo
type: string
- name: $expand
@@ -6294,13 +6370,13 @@ paths:
content:
application/json:
schema:
- title: Collection of homeRealmDiscoveryPolicy
+ title: Collection of featureRolloutPolicy
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
'@odata.nextLink':
type: string
additionalProperties:
@@ -6313,15 +6389,15 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.homeRealmDiscoveryPolicy
- summary: Create new navigation property to homeRealmDiscoveryPolicies for policies
- operationId: policies_CreateHomeRealmDiscoveryPolicies
+ - policies.featureRolloutPolicy
+ summary: Create new navigation property to featureRolloutPolicies for policies
+ operationId: policies_CreateFeatureRolloutPolicies
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
required: true
responses:
'201':
@@ -6329,24 +6405,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}':
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}':
get:
tags:
- - policies.homeRealmDiscoveryPolicy
- summary: Get homeRealmDiscoveryPolicies from policies
- operationId: policies_GetHomeRealmDiscoveryPolicies
+ - policies.featureRolloutPolicy
+ summary: Get featureRolloutPolicies from policies
+ operationId: policies_GetFeatureRolloutPolicies
parameters:
- - name: homeRealmDiscoveryPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of homeRealmDiscoveryPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
- name: $select
in: query
description: Select properties to be returned
@@ -6358,11 +6434,11 @@ paths:
items:
enum:
- id
- - deletedDateTime
- description
- displayName
- - definition
- - isOrganizationDefault
+ - feature
+ - isAppliedToOrganization
+ - isEnabled
- appliesTo
type: string
- name: $expand
@@ -6384,34 +6460,34 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
links:
appliesTo:
- operationId: policies.HomeRealmDiscoveryPolicies.ListAppliesTo
+ operationId: policies.FeatureRolloutPolicies.ListAppliesTo
parameters:
- homeRealmDiscoveryPolicy-id: $request.path.homeRealmDiscoveryPolicy-id
+ featureRolloutPolicy-id: $request.path.featureRolloutPolicy-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - policies.homeRealmDiscoveryPolicy
- summary: Update the navigation property homeRealmDiscoveryPolicies in policies
- operationId: policies_UpdateHomeRealmDiscoveryPolicies
+ - policies.featureRolloutPolicy
+ summary: Update the navigation property featureRolloutPolicies in policies
+ operationId: policies_UpdateFeatureRolloutPolicies
parameters:
- - name: homeRealmDiscoveryPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of homeRealmDiscoveryPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
required: true
responses:
'204':
@@ -6421,17 +6497,17 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - policies.homeRealmDiscoveryPolicy
- summary: Delete navigation property homeRealmDiscoveryPolicies for policies
- operationId: policies_DeleteHomeRealmDiscoveryPolicies
+ - policies.featureRolloutPolicy
+ summary: Delete navigation property featureRolloutPolicies for policies
+ operationId: policies_DeleteFeatureRolloutPolicies
parameters:
- - name: homeRealmDiscoveryPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of homeRealmDiscoveryPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
- name: If-Match
in: header
description: ETag
@@ -6443,93 +6519,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /policies/identitySecurityDefaultsEnforcementPolicy:
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo':
get:
tags:
- - policies.identitySecurityDefaultsEnforcementPolicy
- summary: Get identitySecurityDefaultsEnforcementPolicy from policies
- operationId: policies_GetIdentitySecurityDefaultsEnforcementPolicy
- parameters:
- - name: $select
- in: query
- description: Select properties to be returned
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - id
- - deletedDateTime
- - description
- - displayName
- - isEnabled
- type: string
- - name: $expand
- in: query
- description: Expand related entities
- style: form
- explode: false
- schema:
- uniqueItems: true
- type: array
- items:
- enum:
- - '*'
- type: string
- responses:
- '200':
- description: Retrieved navigation property
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.identitySecurityDefaultsEnforcementPolicy'
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- patch:
- tags:
- - policies.identitySecurityDefaultsEnforcementPolicy
- summary: Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies
- operationId: policies_UpdateIdentitySecurityDefaultsEnforcementPolicy
- requestBody:
- description: New navigation property values
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.identitySecurityDefaultsEnforcementPolicy'
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- delete:
- tags:
- - policies.identitySecurityDefaultsEnforcementPolicy
- summary: Delete navigation property identitySecurityDefaultsEnforcementPolicy for policies
- operationId: policies_DeleteIdentitySecurityDefaultsEnforcementPolicy
+ - policies.featureRolloutPolicy
+ summary: Get appliesTo from policies
+ operationId: policies.featureRolloutPolicies_ListAppliesTo
parameters:
- - name: If-Match
- in: header
- description: ETag
+ - name: featureRolloutPolicy-id
+ in: path
+ description: 'key: id of featureRolloutPolicy'
+ required: true
schema:
type: string
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- /policies/permissionGrantPolicies:
- get:
- tags:
- - policies.permissionGrantPolicy
- summary: Get permissionGrantPolicies from policies
- operationId: policies_ListPermissionGrantPolicies
- parameters:
+ x-ms-docs-key-type: featureRolloutPolicy
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -6549,10 +6552,6 @@ paths:
- id desc
- deletedDateTime
- deletedDateTime desc
- - description
- - description desc
- - displayName
- - displayName desc
type: string
- name: $select
in: query
@@ -6566,10 +6565,6 @@ paths:
enum:
- id
- deletedDateTime
- - description
- - displayName
- - excludes
- - includes
type: string
- name: $expand
in: query
@@ -6582,8 +6577,6 @@ paths:
items:
enum:
- '*'
- - excludes
- - includes
type: string
responses:
'200':
@@ -6591,13 +6584,13 @@ paths:
content:
application/json:
schema:
- title: Collection of permissionGrantPolicy
+ title: Collection of directoryObject
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
'@odata.nextLink':
type: string
additionalProperties:
@@ -6610,15 +6603,23 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.permissionGrantPolicy
- summary: Create new navigation property to permissionGrantPolicies for policies
- operationId: policies_CreatePermissionGrantPolicies
+ - policies.featureRolloutPolicy
+ summary: Create new navigation property to appliesTo for policies
+ operationId: policies.featureRolloutPolicies_CreateAppliesTo
+ parameters:
+ - name: featureRolloutPolicy-id
+ in: path
+ description: 'key: id of featureRolloutPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: featureRolloutPolicy
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
required: true
responses:
'201':
@@ -6626,24 +6627,31 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}':
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}':
get:
tags:
- - policies.permissionGrantPolicy
- summary: Get permissionGrantPolicies from policies
- operationId: policies_GetPermissionGrantPolicies
+ - policies.featureRolloutPolicy
+ summary: Get appliesTo from policies
+ operationId: policies.featureRolloutPolicies_GetAppliesTo
parameters:
- - name: permissionGrantPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of permissionGrantPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: permissionGrantPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
- name: $select
in: query
description: Select properties to be returned
@@ -6656,10 +6664,6 @@ paths:
enum:
- id
- deletedDateTime
- - description
- - displayName
- - excludes
- - includes
type: string
- name: $expand
in: query
@@ -6672,8 +6676,6 @@ paths:
items:
enum:
- '*'
- - excludes
- - includes
type: string
responses:
'200':
@@ -6681,38 +6683,36 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
- links:
- excludes:
- operationId: policies.PermissionGrantPolicies.ListExcludes
- parameters:
- permissionGrantPolicy-id: $request.path.permissionGrantPolicy-id
- includes:
- operationId: policies.PermissionGrantPolicies.ListIncludes
- parameters:
- permissionGrantPolicy-id: $request.path.permissionGrantPolicy-id
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - policies.permissionGrantPolicy
- summary: Update the navigation property permissionGrantPolicies in policies
- operationId: policies_UpdatePermissionGrantPolicies
+ - policies.featureRolloutPolicy
+ summary: Update the navigation property appliesTo in policies
+ operationId: policies.featureRolloutPolicies_UpdateAppliesTo
parameters:
- - name: permissionGrantPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of permissionGrantPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: permissionGrantPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
required: true
responses:
'204':
@@ -6722,18 +6722,25 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - policies.permissionGrantPolicy
- summary: Delete navigation property permissionGrantPolicies for policies
- operationId: policies_DeletePermissionGrantPolicies
+ - policies.featureRolloutPolicy
+ summary: Delete navigation property appliesTo for policies
+ operationId: policies.featureRolloutPolicies_DeleteAppliesTo
parameters:
- - name: permissionGrantPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of permissionGrantPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: permissionGrantPolicy
- - name: If-Match
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
+ - name: If-Match
in: header
description: ETag
schema:
@@ -6744,20 +6751,13 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes':
+ /policies/homeRealmDiscoveryPolicies:
get:
tags:
- - policies.permissionGrantPolicy
- summary: Get excludes from policies
- operationId: policies.permissionGrantPolicies_ListExcludes
+ - policies.homeRealmDiscoveryPolicy
+ summary: Get homeRealmDiscoveryPolicies from policies
+ operationId: policies_ListHomeRealmDiscoveryPolicies
parameters:
- - name: permissionGrantPolicy-id
- in: path
- description: 'key: id of permissionGrantPolicy'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: permissionGrantPolicy
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -6775,22 +6775,16 @@ paths:
enum:
- id
- id desc
- - clientApplicationIds
- - clientApplicationIds desc
- - clientApplicationPublisherIds
- - clientApplicationPublisherIds desc
- - clientApplicationsFromVerifiedPublisherOnly
- - clientApplicationsFromVerifiedPublisherOnly desc
- - clientApplicationTenantIds
- - clientApplicationTenantIds desc
- - permissionClassification
- - permissionClassification desc
- - permissions
- - permissions desc
- - permissionType
- - permissionType desc
- - resourceApplication
- - resourceApplication desc
+ - deletedDateTime
+ - deletedDateTime desc
+ - description
+ - description desc
+ - displayName
+ - displayName desc
+ - definition
+ - definition desc
+ - isOrganizationDefault
+ - isOrganizationDefault desc
type: string
- name: $select
in: query
@@ -6803,14 +6797,12 @@ paths:
items:
enum:
- id
- - clientApplicationIds
- - clientApplicationPublisherIds
- - clientApplicationsFromVerifiedPublisherOnly
- - clientApplicationTenantIds
- - permissionClassification
- - permissions
- - permissionType
- - resourceApplication
+ - deletedDateTime
+ - description
+ - displayName
+ - definition
+ - isOrganizationDefault
+ - appliesTo
type: string
- name: $expand
in: query
@@ -6823,6 +6815,7 @@ paths:
items:
enum:
- '*'
+ - appliesTo
type: string
responses:
'200':
@@ -6830,13 +6823,13 @@ paths:
content:
application/json:
schema:
- title: Collection of permissionGrantConditionSet
+ title: Collection of homeRealmDiscoveryPolicy
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
+ $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
'@odata.nextLink':
type: string
additionalProperties:
@@ -6849,23 +6842,312 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.permissionGrantPolicy
- summary: Create new navigation property to excludes for policies
- operationId: policies.permissionGrantPolicies_CreateExcludes
+ - policies.homeRealmDiscoveryPolicy
+ summary: Create new navigation property to homeRealmDiscoveryPolicies for policies
+ operationId: policies_CreateHomeRealmDiscoveryPolicies
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}':
+ get:
+ tags:
+ - policies.homeRealmDiscoveryPolicy
+ summary: Get homeRealmDiscoveryPolicies from policies
+ operationId: policies_GetHomeRealmDiscoveryPolicies
parameters:
- - name: permissionGrantPolicy-id
+ - name: homeRealmDiscoveryPolicy-id
in: path
- description: 'key: id of permissionGrantPolicy'
+ description: 'key: id of homeRealmDiscoveryPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: permissionGrantPolicy
+ x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - description
+ - displayName
+ - definition
+ - isOrganizationDefault
+ - appliesTo
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appliesTo
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ links:
+ appliesTo:
+ operationId: policies.HomeRealmDiscoveryPolicies.ListAppliesTo
+ parameters:
+ homeRealmDiscoveryPolicy-id: $request.path.homeRealmDiscoveryPolicy-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - policies.homeRealmDiscoveryPolicy
+ summary: Update the navigation property homeRealmDiscoveryPolicies in policies
+ operationId: policies_UpdateHomeRealmDiscoveryPolicies
+ parameters:
+ - name: homeRealmDiscoveryPolicy-id
+ in: path
+ description: 'key: id of homeRealmDiscoveryPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - policies.homeRealmDiscoveryPolicy
+ summary: Delete navigation property homeRealmDiscoveryPolicies for policies
+ operationId: policies_DeleteHomeRealmDiscoveryPolicies
+ parameters:
+ - name: homeRealmDiscoveryPolicy-id
+ in: path
+ description: 'key: id of homeRealmDiscoveryPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: homeRealmDiscoveryPolicy
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /policies/identitySecurityDefaultsEnforcementPolicy:
+ get:
+ tags:
+ - policies.identitySecurityDefaultsEnforcementPolicy
+ summary: Get identitySecurityDefaultsEnforcementPolicy from policies
+ operationId: policies_GetIdentitySecurityDefaultsEnforcementPolicy
+ parameters:
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - description
+ - displayName
+ - isEnabled
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.identitySecurityDefaultsEnforcementPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - policies.identitySecurityDefaultsEnforcementPolicy
+ summary: Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies
+ operationId: policies_UpdateIdentitySecurityDefaultsEnforcementPolicy
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.identitySecurityDefaultsEnforcementPolicy'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - policies.identitySecurityDefaultsEnforcementPolicy
+ summary: Delete navigation property identitySecurityDefaultsEnforcementPolicy for policies
+ operationId: policies_DeleteIdentitySecurityDefaultsEnforcementPolicy
+ parameters:
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /policies/permissionGrantPolicies:
+ get:
+ tags:
+ - policies.permissionGrantPolicy
+ summary: Get permissionGrantPolicies from policies
+ operationId: policies_ListPermissionGrantPolicies
+ 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:
+ enum:
+ - id
+ - id desc
+ - deletedDateTime
+ - deletedDateTime desc
+ - description
+ - description desc
+ - displayName
+ - displayName desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - description
+ - displayName
+ - excludes
+ - includes
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - excludes
+ - includes
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of permissionGrantPolicy
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - policies.permissionGrantPolicy
+ summary: Create new navigation property to permissionGrantPolicies for policies
+ operationId: policies_CreatePermissionGrantPolicies
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
required: true
responses:
'201':
@@ -6873,16 +7155,16 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}':
+ '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}':
get:
tags:
- policies.permissionGrantPolicy
- summary: Get excludes from policies
- operationId: policies.permissionGrantPolicies_GetExcludes
+ summary: Get permissionGrantPolicies from policies
+ operationId: policies_GetPermissionGrantPolicies
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -6891,13 +7173,6 @@ paths:
schema:
type: string
x-ms-docs-key-type: permissionGrantPolicy
- - name: permissionGrantConditionSet-id
- in: path
- description: 'key: id of permissionGrantConditionSet'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: permissionGrantConditionSet
- name: $select
in: query
description: Select properties to be returned
@@ -6909,14 +7184,11 @@ paths:
items:
enum:
- id
- - clientApplicationIds
- - clientApplicationPublisherIds
- - clientApplicationsFromVerifiedPublisherOnly
- - clientApplicationTenantIds
- - permissionClassification
- - permissions
- - permissionType
- - resourceApplication
+ - deletedDateTime
+ - description
+ - displayName
+ - excludes
+ - includes
type: string
- name: $expand
in: query
@@ -6929,6 +7201,8 @@ paths:
items:
enum:
- '*'
+ - excludes
+ - includes
type: string
responses:
'200':
@@ -6936,15 +7210,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
+ links:
+ excludes:
+ operationId: policies.PermissionGrantPolicies.ListExcludes
+ parameters:
+ permissionGrantPolicy-id: $request.path.permissionGrantPolicy-id
+ includes:
+ operationId: policies.PermissionGrantPolicies.ListIncludes
+ parameters:
+ permissionGrantPolicy-id: $request.path.permissionGrantPolicy-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- policies.permissionGrantPolicy
- summary: Update the navigation property excludes in policies
- operationId: policies.permissionGrantPolicies_UpdateExcludes
+ summary: Update the navigation property permissionGrantPolicies in policies
+ operationId: policies_UpdatePermissionGrantPolicies
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -6953,19 +7236,12 @@ paths:
schema:
type: string
x-ms-docs-key-type: permissionGrantPolicy
- - name: permissionGrantConditionSet-id
- in: path
- description: 'key: id of permissionGrantConditionSet'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: permissionGrantConditionSet
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
required: true
responses:
'204':
@@ -6976,8 +7252,8 @@ paths:
delete:
tags:
- policies.permissionGrantPolicy
- summary: Delete navigation property excludes for policies
- operationId: policies.permissionGrantPolicies_DeleteExcludes
+ summary: Delete navigation property permissionGrantPolicies for policies
+ operationId: policies_DeletePermissionGrantPolicies
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -6986,13 +7262,6 @@ paths:
schema:
type: string
x-ms-docs-key-type: permissionGrantPolicy
- - name: permissionGrantConditionSet-id
- in: path
- description: 'key: id of permissionGrantConditionSet'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: permissionGrantConditionSet
- name: If-Match
in: header
description: ETag
@@ -7004,12 +7273,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes':
+ '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes':
get:
tags:
- policies.permissionGrantPolicy
- summary: Get includes from policies
- operationId: policies.permissionGrantPolicies_ListIncludes
+ summary: Get excludes from policies
+ operationId: policies.permissionGrantPolicies_ListExcludes
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -7110,8 +7379,8 @@ paths:
post:
tags:
- policies.permissionGrantPolicy
- summary: Create new navigation property to includes for policies
- operationId: policies.permissionGrantPolicies_CreateIncludes
+ summary: Create new navigation property to excludes for policies
+ operationId: policies.permissionGrantPolicies_CreateExcludes
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -7137,12 +7406,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}':
+ '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}':
get:
tags:
- policies.permissionGrantPolicy
- summary: Get includes from policies
- operationId: policies.permissionGrantPolicies_GetIncludes
+ summary: Get excludes from policies
+ operationId: policies.permissionGrantPolicies_GetExcludes
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -7203,8 +7472,8 @@ paths:
patch:
tags:
- policies.permissionGrantPolicy
- summary: Update the navigation property includes in policies
- operationId: policies.permissionGrantPolicies_UpdateIncludes
+ summary: Update the navigation property excludes in policies
+ operationId: policies.permissionGrantPolicies_UpdateExcludes
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -7236,8 +7505,8 @@ paths:
delete:
tags:
- policies.permissionGrantPolicy
- summary: Delete navigation property includes for policies
- operationId: policies.permissionGrantPolicies_DeleteIncludes
+ summary: Delete navigation property excludes for policies
+ operationId: policies.permissionGrantPolicies_DeleteExcludes
parameters:
- name: permissionGrantPolicy-id
in: path
@@ -7264,13 +7533,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /policies/privateLinkResourcePolicies:
+ '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes':
get:
tags:
- - policies.privateLinkResourcePolicy
- summary: Get privateLinkResourcePolicies from policies
- operationId: policies_ListPrivateLinkResourcePolicies
+ - policies.permissionGrantPolicy
+ summary: Get includes from policies
+ operationId: policies.permissionGrantPolicies_ListIncludes
parameters:
+ - name: permissionGrantPolicy-id
+ in: path
+ description: 'key: id of permissionGrantPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permissionGrantPolicy
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -7288,10 +7564,22 @@ paths:
enum:
- id
- id desc
- - externalPrivateLinkId
- - externalPrivateLinkId desc
- - tenantApprovals
- - tenantApprovals desc
+ - clientApplicationIds
+ - clientApplicationIds desc
+ - clientApplicationPublisherIds
+ - clientApplicationPublisherIds desc
+ - clientApplicationsFromVerifiedPublisherOnly
+ - clientApplicationsFromVerifiedPublisherOnly desc
+ - clientApplicationTenantIds
+ - clientApplicationTenantIds desc
+ - permissionClassification
+ - permissionClassification desc
+ - permissions
+ - permissions desc
+ - permissionType
+ - permissionType desc
+ - resourceApplication
+ - resourceApplication desc
type: string
- name: $select
in: query
@@ -7304,8 +7592,14 @@ paths:
items:
enum:
- id
- - externalPrivateLinkId
- - tenantApprovals
+ - clientApplicationIds
+ - clientApplicationPublisherIds
+ - clientApplicationsFromVerifiedPublisherOnly
+ - clientApplicationTenantIds
+ - permissionClassification
+ - permissions
+ - permissionType
+ - resourceApplication
type: string
- name: $expand
in: query
@@ -7325,13 +7619,13 @@ paths:
content:
application/json:
schema:
- title: Collection of privateLinkResourcePolicy
+ title: Collection of permissionGrantConditionSet
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
'@odata.nextLink':
type: string
additionalProperties:
@@ -7344,15 +7638,23 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.privateLinkResourcePolicy
- summary: Create new navigation property to privateLinkResourcePolicies for policies
- operationId: policies_CreatePrivateLinkResourcePolicies
+ - policies.permissionGrantPolicy
+ summary: Create new navigation property to includes for policies
+ operationId: policies.permissionGrantPolicies_CreateIncludes
+ parameters:
+ - name: permissionGrantPolicy-id
+ in: path
+ description: 'key: id of permissionGrantPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permissionGrantPolicy
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
required: true
responses:
'201':
@@ -7360,24 +7662,31 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/privateLinkResourcePolicies/{privateLinkResourcePolicy-id}':
+ '/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}':
get:
tags:
- - policies.privateLinkResourcePolicy
- summary: Get privateLinkResourcePolicies from policies
- operationId: policies_GetPrivateLinkResourcePolicies
+ - policies.permissionGrantPolicy
+ summary: Get includes from policies
+ operationId: policies.permissionGrantPolicies_GetIncludes
parameters:
- - name: privateLinkResourcePolicy-id
+ - name: permissionGrantPolicy-id
+ in: path
+ description: 'key: id of permissionGrantPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permissionGrantPolicy
+ - name: permissionGrantConditionSet-id
in: path
- description: 'key: id of privateLinkResourcePolicy'
+ description: 'key: id of permissionGrantConditionSet'
required: true
schema:
type: string
- x-ms-docs-key-type: privateLinkResourcePolicy
+ x-ms-docs-key-type: permissionGrantConditionSet
- name: $select
in: query
description: Select properties to be returned
@@ -7389,8 +7698,14 @@ paths:
items:
enum:
- id
- - externalPrivateLinkId
- - tenantApprovals
+ - clientApplicationIds
+ - clientApplicationPublisherIds
+ - clientApplicationsFromVerifiedPublisherOnly
+ - clientApplicationTenantIds
+ - permissionClassification
+ - permissions
+ - permissionType
+ - resourceApplication
type: string
- name: $expand
in: query
@@ -7410,29 +7725,36 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - policies.privateLinkResourcePolicy
- summary: Update the navigation property privateLinkResourcePolicies in policies
- operationId: policies_UpdatePrivateLinkResourcePolicies
+ - policies.permissionGrantPolicy
+ summary: Update the navigation property includes in policies
+ operationId: policies.permissionGrantPolicies_UpdateIncludes
parameters:
- - name: privateLinkResourcePolicy-id
+ - name: permissionGrantPolicy-id
+ in: path
+ description: 'key: id of permissionGrantPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permissionGrantPolicy
+ - name: permissionGrantConditionSet-id
in: path
- description: 'key: id of privateLinkResourcePolicy'
+ description: 'key: id of permissionGrantConditionSet'
required: true
schema:
type: string
- x-ms-docs-key-type: privateLinkResourcePolicy
+ x-ms-docs-key-type: permissionGrantConditionSet
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
+ $ref: '#/components/schemas/microsoft.graph.permissionGrantConditionSet'
required: true
responses:
'204':
@@ -7442,17 +7764,24 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - policies.privateLinkResourcePolicy
- summary: Delete navigation property privateLinkResourcePolicies for policies
- operationId: policies_DeletePrivateLinkResourcePolicies
+ - policies.permissionGrantPolicy
+ summary: Delete navigation property includes for policies
+ operationId: policies.permissionGrantPolicies_DeleteIncludes
parameters:
- - name: privateLinkResourcePolicy-id
+ - name: permissionGrantPolicy-id
in: path
- description: 'key: id of privateLinkResourcePolicy'
+ description: 'key: id of permissionGrantPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permissionGrantPolicy
+ - name: permissionGrantConditionSet-id
+ in: path
+ description: 'key: id of permissionGrantConditionSet'
required: true
schema:
type: string
- x-ms-docs-key-type: privateLinkResourcePolicy
+ x-ms-docs-key-type: permissionGrantConditionSet
- name: If-Match
in: header
description: ETag
@@ -13893,7 +14222,7 @@ 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: 'Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Null until the operation completes.'
+ description: 'Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Null until the operation completes.'
format: date-time
nullable: true
progress:
@@ -13909,7 +14238,7 @@ components:
submittedDateTime:
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: 'Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
userId:
type: string
@@ -13962,7 +14291,7 @@ 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 Timestamp type represents creation date and time of the location 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''. Read-only.'
+ description: 'The Timestamp type represents creation date and time of the location using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
displayName:
@@ -13971,7 +14300,7 @@ components:
modifiedDateTime:
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 Timestamp type represents last modified date and time of the location 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''. Read-only.'
+ description: 'The Timestamp type represents last modified date and time of the location using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -13987,7 +14316,7 @@ 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 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''. Readonly.'
+ description: '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. Readonly.'
format: date-time
nullable: true
description:
@@ -14002,7 +14331,7 @@ components:
modifiedDateTime:
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 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''. Readonly.'
+ description: '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. Readonly.'
format: date-time
nullable: true
sessionControls:
@@ -14032,19 +14361,19 @@ components:
properties:
clientId:
type: string
- description: The client ID for the application obtained when registering the application with the identity provider. This is a required field.
+ description: The client ID for the application obtained when registering the application with the identity provider. This is a required field. Required. Not nullable.
nullable: true
clientSecret:
type: string
- description: The client secret for the application obtained when registering the application with the identity provider. This is write-only. A read operation will return '****'. This is a required field.
+ description: The client secret for the application obtained when registering the application with the identity provider. This is write-only. A read operation will return ****. This is a required field. Required. Not nullable.
nullable: true
name:
type: string
- description: The display name of the identity provider.
+ description: The display name of the identity provider. Not nullable.
nullable: true
type:
type: string
- description: The identity provider type is a required field.For B2B scenario:GoogleFacebookFor B2C scenario:MicrosoftGoogleAmazonLinkedInFacebookGitHubTwitterWeiboQQWeChatOpenIDConnect
+ description: 'The identity provider type is a required field. For B2B scenario: Google, Facebook. For B2C scenario: Microsoft, Google, Amazon, LinkedIn, Facebook, GitHub, Twitter, Weibo,QQ, WeChat, OpenIDConnect. Not nullable.'
nullable: true
additionalProperties:
type: object
@@ -14131,6 +14460,30 @@ components:
$ref: '#/components/schemas/microsoft.graph.dlpPoliciesJobResult'
additionalProperties:
type: object
+ microsoft.graph.bufferDecryptionResult:
+ title: bufferDecryptionResult
+ type: object
+ properties:
+ decryptedBuffer:
+ type: string
+ format: base64url
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.bufferEncryptionResult:
+ title: bufferEncryptionResult
+ type: object
+ properties:
+ encryptedBuffer:
+ type: string
+ format: base64url
+ nullable: true
+ publishingLicense:
+ type: string
+ format: base64url
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.informationProtectionPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -14267,7 +14620,7 @@ components:
creationDateTime:
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 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'''
+ description: '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
label:
@@ -14405,7 +14758,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -14430,7 +14783,7 @@ 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 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''.'
+ description: '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
message:
@@ -14502,7 +14855,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -14519,7 +14872,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -14610,7 +14963,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -14655,7 +15008,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -14767,12 +15120,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -14847,6 +15200,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -15131,10 +15488,6 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.permissionGrantPolicy'
- privateLinkResourcePolicies:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.privateLinkResourcePolicy'
tokenIssuancePolicies:
type: array
items:
@@ -15143,6 +15496,10 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.tokenLifetimePolicy'
+ featureRolloutPolicies:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
adminConsentRequestPolicy:
$ref: '#/components/schemas/microsoft.graph.adminConsentRequestPolicy'
directoryRoleAccessReviewPolicy:
@@ -15179,23 +15536,29 @@ components:
properties:
isEnabled:
type: boolean
+ description: Specifies whether the admin consent request feature is enabled or disabled. Required.
notifyReviewers:
type: boolean
+ description: Specifies whether reviewers will receive notifications. Required.
remindersEnabled:
type: boolean
+ description: Specifies whether reviewers will receive reminder emails. Required.
requestDurationInDays:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: Specifies the duration the request is active before it automatically expires if no decision is applied.
format: int32
reviewers:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.accessReviewScope'
+ $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope'
+ description: Required.
version:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: 'Specifies the version of this policy. When the policy is updated, this version is updated. Read-only.'
format: int32
additionalProperties:
type: object
@@ -15243,6 +15606,8 @@ components:
type: integer
format: int32
nullable: true
+ registrationEnforcement:
+ $ref: '#/components/schemas/microsoft.graph.registrationEnforcement'
authenticationMethodConfigurations:
type: array
items:
@@ -15281,7 +15646,7 @@ components:
guestUserRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'Represents role templateId for the role that should be granted to guest user. Refer to List unifiedRoleDefinitions to find the list of available role templates. Currently following roles are supported: User (a0b1b346-4d3e-4e8b-98f8-753987be4970), Guest User (10dae51f-b6af-4016-8d66-8c2a99b929b3), and Restricted Guest User (2af84b1e-32c8-42b7-82bc-daa82404023b).'
+ description: 'Represents role templateId for the role that should be granted to guest user. Refer to List unifiedRoleDefinitions to find the list of available role templates. Currently following roles are supported: User (a0b1b346-4d3e-4e8b-98f8-753987be4970), Guest User (10dae51f-b6af-4016-8d66-8c2a99b929b3), and Restricted Guest User (2af84b1e-32c8-42b7-82bc-daa82404023b).'
format: uuid
nullable: true
permissionGrantPolicyIdsAssignedToDefaultUserRole:
@@ -15327,6 +15692,48 @@ components:
$ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings'
additionalProperties:
type: object
+ microsoft.graph.featureRolloutPolicy:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: featureRolloutPolicy
+ type: object
+ properties:
+ description:
+ type: string
+ description: A description for this feature rollout policy.
+ nullable: true
+ displayName:
+ type: string
+ description: The display name for this feature rollout policy.
+ feature:
+ $ref: '#/components/schemas/microsoft.graph.stagedFeatureName'
+ isAppliedToOrganization:
+ type: boolean
+ description: Indicates whether this feature rollout policy should be applied to the entire organization.
+ isEnabled:
+ type: boolean
+ description: Indicates whether the feature rollout is enabled.
+ appliesTo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ description: Nullable. Specifies a list of directoryObjects that feature is enabled for.
+ additionalProperties:
+ type: object
+ microsoft.graph.directoryObject:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: directoryObject
+ type: object
+ properties:
+ deletedDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.homeRealmDiscoveryPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.stsPolicy'
@@ -15377,13 +15784,13 @@ components:
items:
type: string
nullable: true
- description: 'A list of appId values for the client applications to match with, or a list with the single value ''all'' to match any client application. Default is the single value ''all''.'
+ description: 'A list of appId values for the client applications to match with, or a list with the single value all to match any client application. Default is the single value all.'
clientApplicationPublisherIds:
type: array
items:
type: string
nullable: true
- description: 'A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value ''all'' to match with client apps from any publisher. Default is the single value ''all''.'
+ description: 'A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value all to match with client apps from any publisher. Default is the single value all.'
clientApplicationsFromVerifiedPublisherOnly:
type: boolean
description: 'Set to true to only match on client applications with a verified publisher. Set to false to match on any client app, even if it does not have a verified publisher. Default is false.'
@@ -15393,17 +15800,17 @@ components:
items:
type: string
nullable: true
- description: 'A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value ''all'' to match with client apps registered in any tenant. Default is the single value ''all''.'
+ description: 'A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value all to match with client apps registered in any tenant. Default is the single value all.'
permissionClassification:
type: string
- description: 'The permission classification for the permission being granted, or ''all'' to match with any permission classification (including permissions which are not classified). Default is all.'
+ description: 'The permission classification for the permission being granted, or all to match with any permission classification (including permissions which are not classified). Default is all.'
nullable: true
permissions:
type: array
items:
type: string
nullable: true
- description: 'The list of id values for the specific permissions to match with, or a list with the single value ''all'' to match with any permission. The id of delegated permissions can be found in the publishedPermissionScopes property of the API''s **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API''s **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API''s **servicePrincipal** object. Default is the single value ''all''.'
+ description: 'The list of id values for the specific permissions to match with, or a list with the single value all to match with any permission. The id of delegated permissions can be found in the publishedPermissionScopes property of the API''s **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API''s **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API''s **servicePrincipal** object. Default is the single value all.'
permissionType:
$ref: '#/components/schemas/microsoft.graph.permissionType'
resourceApplication:
@@ -15412,20 +15819,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.privateLinkResourcePolicy:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: privateLinkResourcePolicy
- type: object
- properties:
- externalPrivateLinkId:
- type: string
- tenantApprovals:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.tenantApprovals'
- additionalProperties:
- type: object
microsoft.graph.unifiedRoleManagementPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -15516,7 +15909,7 @@ components:
activityDateTime:
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 that the risky activity occurred.
+ description: 'Date and time that the risky activity occurred. The DateTimeOffset 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
additionalInfo:
@@ -15530,7 +15923,7 @@ components:
detectedDateTime:
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 that the risk was detected.
+ description: 'Date and time that the risk was detected. The DateTimeOffset 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
detectionTimingType:
@@ -15555,7 +15948,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.riskDetail'
riskEventType:
type: string
- description: 'The type of risk event detected. The possible values are unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, genericadminConfirmedUserCompromised, mcasImpossibleTravel, mcasSuspiciousInboxManipulationRules, investigationsThreatIntelligenceSigninLinked, maliciousIPAddressValidCredentialsBlockedIP, and unknownFutureValue.'
+ description: 'The type of risk event detected. The possible values are unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic,adminConfirmedUserCompromised, mcasImpossibleTravel, mcasSuspiciousInboxManipulationRules, investigationsThreatIntelligenceSigninLinked, maliciousIPAddressValidCredentialsBlockedIP, and unknownFutureValue.'
nullable: true
riskLevel:
$ref: '#/components/schemas/microsoft.graph.riskLevel'
@@ -15565,7 +15958,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.riskEventType'
source:
type: string
- description: 'Source of the risk detection. For example, ''activeDirectory''.'
+ description: 'Source of the risk detection. For example, activeDirectory.'
nullable: true
tokenIssuerType:
$ref: '#/components/schemas/microsoft.graph.tokenIssuerType'
@@ -15575,7 +15968,7 @@ components:
nullable: true
userId:
type: string
- description: Unique ID of the user.
+ description: 'Unique ID of the user. The DateTimeOffset 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'
nullable: true
userPrincipalName:
type: string
@@ -15602,7 +15995,7 @@ components:
riskLastUpdatedDateTime:
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 that the risky user was last updated
+ description: 'The date and time that the risky user was last updated. The DateTimeOffset 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'
format: date-time
nullable: true
riskLevel:
@@ -15704,7 +16097,7 @@ components:
nullable: true
kty:
type: string
- description: 'The ''kty'' (key type) parameter identifies the cryptographic algorithm family used with the key, The valid values are rsa, oct.'
+ description: 'The kty (key type) parameter identifies the cryptographic algorithm family used with the key, The valid values are rsa, oct.'
nullable: true
n:
type: string
@@ -15729,17 +16122,17 @@ components:
nullable: true
use:
type: string
- description: The 'use' (public key use) parameter identifies the intended use of the public key. The 'use' parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Possible values are 1. 'sig' (signature) 2. 'enc' (encryption)
+ description: 'The use (public key use) parameter identifies the intended use of the public key. The use parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Possible values are: sig (signature), enc (encryption)'
nullable: true
x5c:
type: array
items:
type: string
nullable: true
- description: The 'x5c' (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates RFC 5280.
+ description: The x5c (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates RFC 5280.
x5t:
type: string
- description: The 'x5t' (X.509 certificate SHA-1 thumbprint) parameter is a base64url-encoded SHA-1 thumbprint (a.k.a. digest) of the DER encoding of an X.509 certificate RFC 5280.
+ description: The x5t (X.509 certificate SHA-1 thumbprint) parameter is a base64url-encoded SHA-1 thumbprint (a.k.a. digest) of the DER encoding of an X.509 certificate RFC 5280.
nullable: true
additionalProperties:
type: object
@@ -15831,6 +16224,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -15902,13 +16296,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -15917,7 +16311,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -15957,6 +16351,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -15976,7 +16371,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -15998,12 +16393,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -16013,10 +16408,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -16028,12 +16424,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -16043,7 +16442,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -16136,7 +16535,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -16256,7 +16655,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessClientApp'
- description: 'Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other.'
+ description: 'Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required.'
devices:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessDevices'
deviceStates:
@@ -16269,12 +16668,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.riskLevel'
- description: 'Sign-in risk levels included in the policy. Possible values are: low, medium, high, none.'
+ description: 'Sign-in risk levels included in the policy. Possible values are: low, medium, high, hidden, none, unknownFutureValue. Required.'
userRiskLevels:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.riskLevel'
- description: 'User risk levels included in the policy. Possible values are: low, medium, high, none.'
+ description: 'User risk levels included in the policy. Possible values are: low, medium, high, hidden, none, unknownFutureValue. Required.'
users:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessUsers'
additionalProperties:
@@ -16287,7 +16686,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessGrantControl'
- description: 'List of values of built-in controls required by the policy. Possible values: block, mfa, compliantDevice, domainJoinedDevice, approvedApplication, compliantApplication, passwordChange.'
+ description: 'List of values of built-in controls required by the policy. Possible values: block, mfa, compliantDevice, domainJoinedDevice, approvedApplication, compliantApplication, passwordChange, unknownFutureValue.'
customAuthenticationFactors:
type: array
items:
@@ -16628,20 +17027,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.directoryObject:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: directoryObject
- type: object
- properties:
- deletedDateTime:
- 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
- format: date-time
- nullable: true
- additionalProperties:
- type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.signInActivity:
title: signInActivity
type: object
@@ -16649,7 +17034,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -16684,7 +17069,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -16985,12 +17370,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -17000,16 +17385,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -17075,15 +17460,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -17095,11 +17480,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -17107,11 +17492,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -17267,7 +17652,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -17402,7 +17787,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -17591,7 +17976,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -17605,7 +17990,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -17649,7 +18034,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -17658,7 +18043,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -17698,7 +18083,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -17731,26 +18116,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -17763,7 +18148,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -18048,7 +18433,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -18061,7 +18446,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -18322,6 +18707,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -18347,6 +18733,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -18366,20 +18754,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -18403,7 +18796,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -18411,7 +18804,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -18460,13 +18853,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -18574,6 +18967,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -19167,6 +19565,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -19430,7 +19830,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -19496,6 +19896,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -19555,6 +19957,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -19574,7 +19981,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -19615,8 +20022,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -19654,6 +20059,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -19724,27 +20131,33 @@ components:
type: boolean
description: 'If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false.'
nullable: true
- appliesTo:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ appliesTo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
+ microsoft.graph.accessReviewReviewerScope:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.accessReviewScope'
+ - title: accessReviewReviewerScope
+ type: object
+ properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
+ queryRoot:
+ type: string
+ description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
+ nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
- microsoft.graph.accessReviewScope:
- title: accessReviewScope
- type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.selfServiceSignUpAuthenticationFlowConfiguration:
title: selfServiceSignUpAuthenticationFlowConfiguration
type: object
@@ -19754,6 +20167,14 @@ components:
description: Indicates whether self-service sign-up flow is enabled or disabled. The default value is false. This property is not a key. Required.
additionalProperties:
type: object
+ microsoft.graph.registrationEnforcement:
+ title: registrationEnforcement
+ type: object
+ properties:
+ authenticationMethodsRegistrationCampaign:
+ $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRegistrationCampaign'
+ additionalProperties:
+ type: object
microsoft.graph.authenticationMethodConfiguration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -19844,6 +20265,15 @@ components:
description: Flag to indicate whether reminders are enabled/disabled.
additionalProperties:
type: object
+ microsoft.graph.stagedFeatureName:
+ title: stagedFeatureName
+ enum:
+ - passthroughAuthentication
+ - seamlessSso
+ - passwordHashSync
+ - emailAsAlternateId
+ - unknownFutureValue
+ type: string
microsoft.graph.permissionType:
title: permissionType
enum:
@@ -19851,20 +20281,6 @@ components:
- delegated
- delegatedUserConsentable
type: string
- microsoft.graph.tenantApprovals:
- title: tenantApprovals
- type: object
- properties:
- state:
- type: string
- nullable: true
- tenantId:
- pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
- type: string
- format: uuid
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.identity:
title: identity
type: object
@@ -20187,20 +20603,20 @@ components:
type: array
items:
type: string
+ description: 'States excluded from the scope of the policy. Possible values: Compliant, DomainJoined.'
excludeDeviceStates:
type: array
items:
type: string
- description: 'States excluded from the scope of the policy. Possible values: Compliant, DomainJoined.'
includeDevices:
type: array
items:
type: string
+ description: States in the scope of the policy. All is the only allowed value.
includeDeviceStates:
type: array
items:
type: string
- description: States in the scope of the policy. All is the only allowed value.
additionalProperties:
type: object
microsoft.graph.conditionalAccessDeviceStates:
@@ -20243,12 +20659,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessDevicePlatform'
- description: 'Possible values are: android, iOS, windows, windowsPhone, macOS.'
+ description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue.'
includePlatforms:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessDevicePlatform'
- description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all.'
+ description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue.'
additionalProperties:
type: object
microsoft.graph.conditionalAccessUsers:
@@ -20689,13 +21105,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -20826,7 +21242,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -20873,7 +21289,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 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'''
+ description: '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
name:
@@ -21072,18 +21488,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -21121,7 +21542,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -21161,7 +21582,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -21677,6 +22098,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -21700,6 +22123,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -21888,12 +22313,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -21907,6 +22335,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -21941,6 +22370,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -21961,6 +22391,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -21974,6 +22405,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -21989,6 +22421,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -21998,10 +22431,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -22067,12 +22502,39 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.appConsentRequestScope:
title: appConsentRequestScope
type: object
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -22084,6 +22546,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -22095,24 +22558,41 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewScope:
+ title: accessReviewScope
+ type: object
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItem:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -22127,7 +22607,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -22142,16 +22622,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -22174,7 +22664,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -22194,7 +22684,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -22254,6 +22744,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -22545,11 +23057,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -23405,7 +23918,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -23466,7 +23979,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -23478,7 +23991,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -23486,7 +23999,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -23527,7 +24040,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -23566,6 +24079,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -23652,7 +24175,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -23686,7 +24209,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -24459,6 +24982,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -24556,6 +25080,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -24631,11 +25167,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -24666,7 +25203,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -24695,15 +25232,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -24794,161 +25334,68 @@ components:
nullable: true
allowCreateUpdateChannels:
type: boolean
- description: 'If set to true, members can add and update any channels.'
- nullable: true
- allowCreateUpdateRemoveConnectors:
- type: boolean
- description: 'If set to true, members can add, update, and remove connectors.'
- nullable: true
- allowCreateUpdateRemoveTabs:
- type: boolean
- description: 'If set to true, members can add, update, and remove tabs.'
- nullable: true
- allowDeleteChannels:
- type: boolean
- description: 'If set to true, members can delete channels.'
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamMessagingSettings:
- title: teamMessagingSettings
- type: object
- properties:
- allowChannelMentions:
- type: boolean
- description: 'If set to true, @channel mentions are allowed.'
- nullable: true
- allowOwnerDeleteMessages:
- type: boolean
- description: 'If set to true, owners can delete any message.'
- nullable: true
- allowTeamMentions:
- type: boolean
- description: 'If set to true, @team mentions are allowed.'
- nullable: true
- allowUserDeleteMessages:
- type: boolean
- description: 'If set to true, users can delete their messages.'
- nullable: true
- allowUserEditMessages:
- type: boolean
- description: 'If set to true, users can edit their messages.'
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamSpecialization:
- title: teamSpecialization
- enum:
- - none
- - educationStandard
- - educationClass
- - educationProfessionalLearningCommunity
- - educationStaff
- - healthcareStandard
- - healthcareCareCoordination
- - unknownFutureValue
- type: string
- microsoft.graph.teamVisibilityType:
- title: teamVisibilityType
- enum:
- - private
- - public
- - hiddenMembership
- - unknownFutureValue
- type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
+ description: 'If set to true, members can add and update any channels.'
+ nullable: true
+ allowCreateUpdateRemoveConnectors:
+ type: boolean
+ description: 'If set to true, members can add, update, and remove connectors.'
+ nullable: true
+ allowCreateUpdateRemoveTabs:
+ type: boolean
+ description: 'If set to true, members can add, update, and remove tabs.'
+ nullable: true
+ allowDeleteChannels:
+ type: boolean
+ description: 'If set to true, members can delete channels.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamMessagingSettings:
+ title: teamMessagingSettings
+ type: object
+ properties:
+ allowChannelMentions:
+ type: boolean
+ description: 'If set to true, @channel mentions are allowed.'
+ nullable: true
+ allowOwnerDeleteMessages:
+ type: boolean
+ description: 'If set to true, owners can delete any message.'
+ nullable: true
+ allowTeamMentions:
+ type: boolean
+ description: 'If set to true, @team mentions are allowed.'
+ nullable: true
+ allowUserDeleteMessages:
+ type: boolean
+ description: 'If set to true, users can delete their messages.'
+ nullable: true
+ allowUserEditMessages:
+ type: boolean
+ description: 'If set to true, users can edit their messages.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamSpecialization:
+ title: teamSpecialization
+ enum:
+ - none
+ - educationStandard
+ - educationClass
+ - educationProfessionalLearningCommunity
+ - educationStaff
+ - healthcareStandard
+ - healthcareCareCoordination
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamVisibilityType:
+ title: teamVisibilityType
+ enum:
+ - private
+ - public
+ - hiddenMembership
+ - unknownFutureValue
+ type: string
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -25077,6 +25524,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -25117,6 +25657,27 @@ components:
description: The tasks in this task list. Read-only. Nullable.
additionalProperties:
type: object
+ microsoft.graph.authenticationMethodsRegistrationCampaign:
+ title: authenticationMethodsRegistrationCampaign
+ type: object
+ properties:
+ excludeTargets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.excludeTarget'
+ includeTargets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.authenticationMethodsRegistrationCampaignIncludeTarget'
+ snoozeDurationInDays:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ state:
+ $ref: '#/components/schemas/microsoft.graph.advancedConfigState'
+ additionalProperties:
+ type: object
microsoft.graph.authenticationMethodState:
title: authenticationMethodState
enum:
@@ -25646,7 +26207,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -26203,6 +26764,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -26382,6 +26954,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -26542,9 +27125,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -26743,6 +27328,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -26820,9 +27406,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -26892,13 +27480,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -26910,18 +27501,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -26941,9 +27537,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -27052,6 +27650,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.request:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -27096,23 +27772,29 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.accessReviewInstanceDecisionItemTarget:
- title: accessReviewInstanceDecisionItemTarget
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.accessReviewInstanceDecisionItemTarget:
+ title: accessReviewInstanceDecisionItemTarget
type: object
additionalProperties:
type: object
- microsoft.graph.accessReviewReviewerScope:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.accessReviewScope'
- - title: accessReviewReviewerScope
- type: object
- properties:
- queryRoot:
- type: string
- description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.deviceAndAppManagementAssignmentSource:
title: deviceAndAppManagementAssignmentSource
enum:
@@ -27858,6 +28540,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -27865,6 +28548,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -27878,7 +28562,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -27886,7 +28570,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 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'''
+ description: '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
additionalProperties:
@@ -27925,7 +28609,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -27993,7 +28677,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -28321,6 +29005,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsApp:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -28350,6 +29058,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -28358,6 +29068,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -28383,6 +29094,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -28421,9 +29136,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -28485,7 +29202,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -28496,19 +29213,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -28540,6 +29247,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.operationStatus:
title: operationStatus
enum:
@@ -28565,7 +29356,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -28682,163 +29473,79 @@ components:
$ref: '#/components/schemas/microsoft.graph.timeCardBreak'
clockInEvent:
$ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- clockOutEvent:
- $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
- confirmedBy:
- $ref: '#/components/schemas/microsoft.graph.confirmedBy'
- notes:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- originalEntry:
- $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
- state:
- $ref: '#/components/schemas/microsoft.graph.timeCardState'
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffReason:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOffReason
- type: object
- properties:
- displayName:
- type: string
- description: The name of the timeOffReason. Required.
- nullable: true
- iconType:
- $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
- isActive:
- type: boolean
- description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOffRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
- - title: timeOffRequest
- type: object
- properties:
- endDateTime:
- 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 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'''
- format: date-time
- nullable: true
- startDateTime:
- 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 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'''
- format: date-time
- nullable: true
- timeOffReasonId:
- type: string
- description: The reason for the time off.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.timeOff:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
- - title: timeOff
- type: object
- properties:
- draftTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- isStagedForDeletion:
- type: boolean
- nullable: true
- sharedTimeOff:
- $ref: '#/components/schemas/microsoft.graph.timeOffItem'
- userId:
- type: string
- description: ID of the user assigned to the timeOff. Required.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
+ clockOutEvent:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEvent'
+ confirmedBy:
+ $ref: '#/components/schemas/microsoft.graph.confirmedBy'
+ notes:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ originalEntry:
+ $ref: '#/components/schemas/microsoft.graph.timeCardEntry'
+ state:
+ $ref: '#/components/schemas/microsoft.graph.timeCardState'
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOffReason:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOffReason
type: object
properties:
displayName:
type: string
+ description: The name of the timeOffReason. Required.
nullable: true
- tenantId:
+ iconType:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType'
+ isActive:
+ type: boolean
+ description: Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOffRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest'
+ - title: timeOffRequest
+ type: object
+ properties:
+ endDateTime:
+ 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 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
+ startDateTime:
+ 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 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
+ timeOffReasonId:
type: string
+ description: The reason for the time off.
nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.timeOff:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
+ - title: timeOff
+ type: object
+ properties:
+ draftTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
+ isStagedForDeletion:
+ type: boolean
+ nullable: true
+ sharedTimeOff:
+ $ref: '#/components/schemas/microsoft.graph.timeOffItem'
userId:
type: string
+ description: ID of the user assigned to the timeOff. Required.
nullable: true
additionalProperties:
type: object
@@ -28904,6 +29611,37 @@ components:
description: A collection of resources linked to the task.
additionalProperties:
type: object
+ microsoft.graph.excludeTarget:
+ title: excludeTarget
+ type: object
+ properties:
+ id:
+ type: string
+ targetType:
+ $ref: '#/components/schemas/microsoft.graph.authenticationMethodTargetType'
+ additionalProperties:
+ type: object
+ microsoft.graph.authenticationMethodsRegistrationCampaignIncludeTarget:
+ title: authenticationMethodsRegistrationCampaignIncludeTarget
+ type: object
+ properties:
+ id:
+ type: string
+ targetedAuthenticationMethod:
+ type: string
+ nullable: true
+ targetType:
+ $ref: '#/components/schemas/microsoft.graph.authenticationMethodTargetType'
+ additionalProperties:
+ type: object
+ microsoft.graph.advancedConfigState:
+ title: advancedConfigState
+ enum:
+ - default
+ - enabled
+ - disabled
+ - unknownFutureValue
+ type: string
odata.error.detail:
required:
- code
@@ -29186,6 +29924,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -29198,6 +29944,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -29506,6 +30264,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.deviceAndAppManagementAssignmentFilterType:
title: deviceAndAppManagementAssignmentFilterType
enum:
@@ -29920,6 +30776,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -30025,6 +30882,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -30033,6 +30912,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -30048,6 +30935,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -30091,6 +30991,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -30258,21 +31190,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30297,6 +31214,22 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.authenticationMethodTargetType:
+ title: authenticationMethodTargetType
+ enum:
+ - user
+ - group
+ - unknownFutureValue
+ type: string
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -30470,6 +31403,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.settingSourceType:
title: settingSourceType
enum:
@@ -30550,7 +31521,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -30560,7 +31531,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Mail.yml b/openApiDocs/beta/Mail.yml
index 025e8c2b582..c2a2d150350 100644
--- a/openApiDocs/beta/Mail.yml
+++ b/openApiDocs/beta/Mail.yml
@@ -6244,7 +6244,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -6257,7 +6257,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -6326,7 +6326,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 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'''
+ description: '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
name:
@@ -6661,13 +6661,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
diff --git a/openApiDocs/beta/Notes.yml b/openApiDocs/beta/Notes.yml
index 3f0680d8d09..4c862b32e46 100644
--- a/openApiDocs/beta/Notes.yml
+++ b/openApiDocs/beta/Notes.yml
@@ -85075,7 +85075,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -85119,7 +85119,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -85174,7 +85174,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -85216,7 +85216,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
diff --git a/openApiDocs/beta/PersonalContacts.yml b/openApiDocs/beta/PersonalContacts.yml
index 2bd94af7363..6a0fea18fa3 100644
--- a/openApiDocs/beta/PersonalContacts.yml
+++ b/openApiDocs/beta/PersonalContacts.yml
@@ -4161,7 +4161,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -4393,13 +4393,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
diff --git a/openApiDocs/beta/Planner.yml b/openApiDocs/beta/Planner.yml
index 01b5fd0d405..d49d65dc873 100644
--- a/openApiDocs/beta/Planner.yml
+++ b/openApiDocs/beta/Planner.yml
@@ -12298,7 +12298,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -12383,7 +12383,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -12395,7 +12395,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -12403,7 +12403,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -12444,7 +12444,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
diff --git a/openApiDocs/beta/Reports.yml b/openApiDocs/beta/Reports.yml
index 61c2815033d..65370976527 100644
--- a/openApiDocs/beta/Reports.yml
+++ b/openApiDocs/beta/Reports.yml
@@ -5878,6 +5878,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsDeviceUsageDistributionTotalUserCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsDeviceUsageDistributionTotalUserCounts
+ operationId: reports_getTeamsDeviceUsageDistributionTotalUserCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsDeviceUsageDistributionUserCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/reports/microsoft.graph.getTeamsDeviceUsageDistributionUserCounts(period=''{period}'')':
get:
tags:
@@ -5903,6 +5928,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsDeviceUsageTotalUserCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsDeviceUsageTotalUserCounts
+ operationId: reports_getTeamsDeviceUsageTotalUserCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsDeviceUsageUserCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/reports/microsoft.graph.getTeamsDeviceUsageUserCounts(period=''{period}'')':
get:
tags:
@@ -6005,6 +6055,106 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsUserActivityDistributionTotalUserCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsUserActivityDistributionTotalUserCounts
+ operationId: reports_getTeamsUserActivityDistributionTotalUserCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsUserActivityDistributionUserCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsUserActivityDistributionUserCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsUserActivityDistributionUserCounts
+ operationId: reports_getTeamsUserActivityDistributionUserCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsUserActivityDistributionUserCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsUserActivityTotalCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsUserActivityTotalCounts
+ operationId: reports_getTeamsUserActivityTotalCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsUserActivityCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/reports/microsoft.graph.getTeamsUserActivityTotalUserCounts(period=''{period}'')':
+ get:
+ tags:
+ - reports.Functions
+ summary: Invoke function getTeamsUserActivityTotalUserCounts
+ operationId: reports_getTeamsUserActivityTotalUserCounts
+ parameters:
+ - name: period
+ in: path
+ description: 'Usage: period={period}'
+ required: true
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.teamsUserActivityUserCounts'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/reports/microsoft.graph.getTeamsUserActivityUserCounts(period=''{period}'')':
get:
tags:
@@ -7792,7 +7942,7 @@ components:
activityDateTime:
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: 'Indicates the date and time the activity was performed. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Indicates the date and time the activity was performed. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.'
format: date-time
activityDisplayName:
type: string
@@ -7822,7 +7972,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.operationResult'
resultReason:
type: string
- description: Indicates the reason for failure if the result is 'Failure' or 'timeout'.
+ description: Indicates the reason for failure if the result is failure or timeout.
nullable: true
targetResources:
type: array
@@ -7844,7 +7994,7 @@ components:
activityDateTime:
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 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'''
+ description: '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
changeId:
type: string
@@ -7957,7 +8107,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.authenticationRequirementPolicy'
clientAppUsed:
type: string
- description: 'The legacy client used for sign-in activity. For example, Browser, Exchange Active Sync,Modern clients, IMAP, MAPI, SMTP, or POP.'
+ description: 'The legacy client used for sign-in activity. For example: Browser, Exchange Active Sync, Modern clients, IMAP, MAPI, SMTP, or POP.'
nullable: true
conditionalAccessStatus:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessStatus'
@@ -7968,7 +8118,7 @@ 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 sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''.'
+ description: 'The date and time the sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.'
format: date-time
deviceDetail:
$ref: '#/components/schemas/microsoft.graph.deviceDetail'
@@ -7997,7 +8147,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.networkLocationDetail'
- description: 'The network location details, such as IP address, location of the sign-in, the type of network used, and its names. Possible values: Named Netowrk, Extranet, Intranet, or Trusted Network.'
+ description: The network location details including the type of network used and its names.
originalRequestId:
type: string
description: The request identifier of the first request in the authentication sequence.
@@ -8319,7 +8469,7 @@ components:
aggregatedEventDateTime:
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 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''.'
+ description: '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
appDisplayName:
@@ -8409,16 +8559,16 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.registrationAuthMethod'
- description: 'Represents the authentication method that the user has registered. Possible values are: email, mobilePhone, officePhone, securityQuestion (only used for self-service password reset), appNotification, appCode, and alternateMobilePhone (supported only in registration).'
+ description: 'Represents the authentication method that the user has registered. Possible values are: email, mobilePhone, officePhone, securityQuestion (only used for self-service password reset), appNotification, appCode, alternateMobilePhone (supported only in registration), fido, appPassword, unknownFutureValue.'
isCapable:
type: boolean
description: Indicates whether the user is ready to perform self-service password reset or MFA.
isEnabled:
type: boolean
- description: Indiciates whether the user enabled to perform self-service password reset.
+ description: Indicates whether the user enabled to perform self-service password reset.
isMfaRegistered:
type: boolean
- description: Indiciates whether the user is registered for MFA.
+ description: Indicates whether the user is registered for MFA.
isRegistered:
type: boolean
description: Indicates whether the user has registered any authentication methods for self-service password reset.
@@ -8449,6 +8599,7 @@ components:
properties:
userPrincipalName:
type: string
+ description: The UPN of the user represented by these statistics.
nullable: true
additionalProperties:
type: object
@@ -10021,7 +10172,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.keyValuePair'
- description: 'Specifies all the validations check done on applications configuration details to evaluate if the application is ready to be moved to Azure AD. Possible names are: AdditionalWSFedEndpointCheckResult, AllowedAuthenticationClassReferencesCheckResult, AlwaysRequireAuthenticationCheckResult, AutoUpdateEnabledCheckResult, ClaimsProviderNameCheckResult, EncryptClaimsCheckResult, EncryptedNameIdRequiredCheckResult, MonitoringEnabledCheckResult,NotBeforeSkewCheckResult, RequestMFAFromClaimsProvidersCheckResult, SignedSamlRequestsRequiredCheckResult, AdditionalAuthenticationRulesCheckResult, TokenLifetimeCheckResult, DelegationAuthorizationRulesCheckResult, IssuanceAuthorizationRulesCheckResult, IssuanceTransformRulesCheckResult. Possible result values are 0, 1, or 2. 0 when the validation check passed, 1 when the validation check failed and 2 when the validation check is a warning.'
+ description: Specifies all the validations check done on applications configuration details to evaluate if the application is ready to be moved to Azure AD.
relyingPartyId:
type: string
description: This identifier is used to identify the relying party to this Federation Service. It is used when issuing claims to the relying party.
@@ -11067,10 +11218,18 @@ components:
type: integer
format: int64
nullable: true
+ chromeOS:
+ type: integer
+ format: int64
+ nullable: true
ios:
type: integer
format: int64
nullable: true
+ linux:
+ type: integer
+ format: int64
+ nullable: true
mac:
type: integer
format: int64
@@ -11107,10 +11266,18 @@ components:
type: integer
format: int64
nullable: true
+ chromeOS:
+ type: integer
+ format: int64
+ nullable: true
ios:
type: integer
format: int64
nullable: true
+ linux:
+ type: integer
+ format: int64
+ nullable: true
mac:
type: integer
format: int64
@@ -11156,6 +11323,9 @@ components:
isDeleted:
type: boolean
nullable: true
+ isLicensed:
+ type: boolean
+ nullable: true
lastActivityDate:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$'
type: string
@@ -11172,9 +11342,15 @@ components:
usedAndroidPhone:
type: boolean
nullable: true
+ usedChromeOS:
+ type: boolean
+ nullable: true
usediOS:
type: boolean
nullable: true
+ usedLinux:
+ type: boolean
+ nullable: true
usedMac:
type: boolean
nullable: true
@@ -11229,6 +11405,38 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.teamsUserActivityDistributionUserCounts:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsUserActivityDistributionUserCounts
+ type: object
+ properties:
+ calls:
+ type: integer
+ format: int64
+ nullable: true
+ meetings:
+ type: integer
+ format: int64
+ nullable: true
+ privateChatMessages:
+ type: integer
+ format: int64
+ nullable: true
+ reportPeriod:
+ type: string
+ nullable: true
+ reportRefreshDate:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$'
+ type: string
+ format: date
+ nullable: true
+ teamChatMessages:
+ type: integer
+ format: int64
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsUserActivityUserCounts:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -11276,11 +11484,24 @@ components:
- title: teamsUserActivityUserDetail
type: object
properties:
+ adHocMeetingsAttendedCount:
+ type: integer
+ format: int64
+ nullable: true
+ adHocMeetingsOrganizedCount:
+ type: integer
+ format: int64
+ nullable: true
assignedProducts:
type: array
items:
type: string
nullable: true
+ audioDuration:
+ pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$'
+ type: string
+ format: duration
+ nullable: true
callCount:
type: integer
format: int64
@@ -11296,6 +11517,9 @@ components:
isDeleted:
type: boolean
nullable: true
+ isLicensed:
+ type: boolean
+ nullable: true
lastActivityDate:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$'
type: string
@@ -11305,6 +11529,14 @@ components:
type: integer
format: int64
nullable: true
+ meetingsAttendedCount:
+ type: integer
+ format: int64
+ nullable: true
+ meetingsOrganizedCount:
+ type: integer
+ format: int64
+ nullable: true
privateChatMessageCount:
type: integer
format: int64
@@ -11317,6 +11549,27 @@ components:
type: string
format: date
nullable: true
+ scheduledOneTimeMeetingsAttendedCount:
+ type: integer
+ format: int64
+ nullable: true
+ scheduledOneTimeMeetingsOrganizedCount:
+ type: integer
+ format: int64
+ nullable: true
+ scheduledRecurringMeetingsAttendedCount:
+ type: integer
+ format: int64
+ nullable: true
+ scheduledRecurringMeetingsOrganizedCount:
+ type: integer
+ format: int64
+ nullable: true
+ screenShareDuration:
+ pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$'
+ type: string
+ format: duration
+ nullable: true
teamChatMessageCount:
type: integer
format: int64
@@ -11324,6 +11577,11 @@ components:
userPrincipalName:
type: string
nullable: true
+ videoDuration:
+ pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$'
+ type: string
+ format: duration
+ nullable: true
additionalProperties:
type: object
microsoft.graph.yammerActivitySummary:
@@ -11701,7 +11959,7 @@ components:
eventDateTime:
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 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''.'
+ description: '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.'
format: date-time
failureReason:
type: string
@@ -11920,7 +12178,7 @@ components:
description: 'Refers to the session controls enforced by the conditional access policy (example: ''Require app enforced controls'').'
id:
type: string
- description: Unique GUID of the conditional access policy.
+ description: Identifier of the conditional access policy.
nullable: true
result:
$ref: '#/components/schemas/microsoft.graph.appliedConditionalAccessPolicyResult'
@@ -11932,7 +12190,7 @@ components:
properties:
authenticationMethod:
type: string
- description: 'The type of authentication method used to perform this step of authentication. Possible values: Password, SMS, Voice, Authenticator App, Software OATH token, Satisfied by token.'
+ description: 'The type of authentication method used to perform this step of authentication. Possible values: Password, SMS, Voice, Authenticator App, Software OATH token, Satisfied by token, Previously satisfied.'
nullable: true
authenticationMethodDetail:
type: string
@@ -11941,7 +12199,7 @@ components:
authenticationStepDateTime:
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: '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''.'
+ description: '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
authenticationStepRequirement:
@@ -12507,8 +12765,8 @@ components:
- success
- failure
- skipped
- - unknownFutureValue
- warning
+ - unknownFutureValue
type: string
microsoft.graph.identity:
title: identity
diff --git a/openApiDocs/beta/Search.yml b/openApiDocs/beta/Search.yml
index 627b0ad4c69..09496c24f19 100644
--- a/openApiDocs/beta/Search.yml
+++ b/openApiDocs/beta/Search.yml
@@ -44,7 +44,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.external'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.external'
links:
connections:
operationId: external.ListConnections
@@ -61,7 +61,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.external'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.external'
required: true
responses:
'204':
@@ -150,7 +150,7 @@ paths:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
'@odata.nextLink':
type: string
additionalProperties:
@@ -171,7 +171,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
required: true
responses:
'201':
@@ -179,7 +179,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -239,7 +239,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
links:
groups:
operationId: external.Connections.ListGroups
@@ -278,7 +278,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
required: true
responses:
'204':
@@ -386,6 +386,8 @@ paths:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.searchRequest'
+ queryAlterationOptions:
+ $ref: '#/components/schemas/microsoft.graph.searchAlterationOptions'
additionalProperties:
type: object
required: true
@@ -395,58 +397,52 @@ paths:
content:
application/json:
schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.searchResponse'
+ $ref: '#/components/schemas/microsoft.graph.searchResponse'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
components:
schemas:
- microsoft.graph.external:
+ microsoft.graph.externalConnectors.external:
title: external
type: object
properties:
connections:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.externalConnection'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection'
additionalProperties:
type: object
- microsoft.graph.externalConnection:
+ microsoft.graph.externalConnectors.externalConnection:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: externalConnection
type: object
properties:
configuration:
- $ref: '#/components/schemas/microsoft.graph.configuration'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.configuration'
description:
type: string
- description: Description of the connection displayed in the Microsoft 365 admin center. Optional.
nullable: true
name:
type: string
- description: The display name of the connection to be displayed in the Microsoft 365 admin center. Maximum length of 128 characters. Required.
nullable: true
state:
- $ref: '#/components/schemas/microsoft.graph.connectionState'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionState'
groups:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.externalGroup'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalGroup'
items:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.externalItem'
- description: Read-only. Nullable.
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItem'
operations:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.connectionOperation'
- description: Read-only. Nullable.
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation'
schema:
- $ref: '#/components/schemas/microsoft.graph.schema'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.schema'
additionalProperties:
type: object
microsoft.graph.searchEntity:
@@ -476,10 +472,10 @@ components:
items:
type: string
nullable: true
- description: 'Contains the connection to be targeted. Respects the following format : /external/connections/connectionid where connectionid is the ConnectionId defined in the Connectors Administration. Note : contentSource is only applicable when entityType=externalItem. Optional.'
+ description: 'Contains the connection to be targeted. Respects the following format : /external/connections/connectionid where connectionid is the ConnectionId defined in the Connectors Administration. Note: contentSource is only applicable when entityType=externalItem. Optional.'
enableTopResults:
type: boolean
- description: 'This triggers hybrid sort for messages : the first 3 messages are the most relevant. This property is only applicable to entityType=message. Optional.'
+ description: 'This triggers hybrid sort for messages: the first 3 messages are the most relevant. This property is only applicable to entityType=message. Optional.'
nullable: true
entityTypes:
type: array
@@ -491,7 +487,7 @@ components:
items:
type: string
nullable: true
- description: 'Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from content ingested by Graph connectors. Optional.'
+ description: 'Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from content that Microsoft Graph connectors bring in. The fields property can be using the semantic labels applied to properties. For example, if a property is label as title, you can retrieve it using the following syntax : label_title.Optional.'
from:
maximum: 2147483647
minimum: -2147483648
@@ -518,21 +514,28 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.searchAlterationOptions:
+ title: searchAlterationOptions
+ type: object
+ properties:
+ enableModification:
+ type: boolean
+ nullable: true
+ enableSuggestion:
+ type: boolean
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.searchResponse:
title: searchResponse
type: object
properties:
- hitsContainers:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.searchHitsContainer'
- description: A collection of search results.
- searchTerms:
+ queryAlterationResponse:
+ $ref: '#/components/schemas/microsoft.graph.alterationResponse'
+ value:
type: array
items:
- type: string
- nullable: true
- description: Contains the search terms sent in the initial search query.
+ $ref: '#/components/schemas/microsoft.graph.searchResultSet'
additionalProperties:
type: object
microsoft.graph.entity:
@@ -544,19 +547,18 @@ components:
description: Read-only.
additionalProperties:
type: object
- microsoft.graph.configuration:
+ microsoft.graph.externalConnectors.configuration:
title: configuration
type: object
properties:
- authorizedApps:
+ authorizedAppIds:
type: array
items:
type: string
nullable: true
- description: A collection of application IDs for registered Azure Active Directory apps that are allowed to manage the externalConnection and to index content in the externalConnection.
additionalProperties:
type: object
- microsoft.graph.connectionState:
+ microsoft.graph.externalConnectors.connectionState:
title: connectionState
enum:
- draft
@@ -565,7 +567,7 @@ components:
- limitExceeded
- unknownFutureValue
type: string
- microsoft.graph.externalGroup:
+ microsoft.graph.externalConnectors.externalGroup:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: externalGroup
@@ -573,20 +575,17 @@ components:
properties:
description:
type: string
- description: The description of the external group. Optional.
nullable: true
displayName:
type: string
- description: The friendly name of the external group. Optional.
nullable: true
members:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.externalGroupMember'
- description: 'A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or other externalGroups as members.'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalGroupMember'
additionalProperties:
type: object
- microsoft.graph.externalItem:
+ microsoft.graph.externalConnectors.externalItem:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: externalItem
@@ -595,27 +594,26 @@ components:
acl:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.acl'
- description: An array of access control entries. Each entry specifies the access granted to a user or group. Required.
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.acl'
content:
- $ref: '#/components/schemas/microsoft.graph.externalItemContent'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItemContent'
properties:
- $ref: '#/components/schemas/microsoft.graph.properties'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.properties'
additionalProperties:
type: object
- microsoft.graph.connectionOperation:
+ microsoft.graph.externalConnectors.connectionOperation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: connectionOperation
type: object
properties:
error:
- $ref: '#/components/schemas/microsoft.graph.errorDetail'
+ $ref: '#/components/schemas/microsoft.graph.publicError'
status:
- $ref: '#/components/schemas/microsoft.graph.connectionOperationStatus'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperationStatus'
additionalProperties:
type: object
- microsoft.graph.schema:
+ microsoft.graph.externalConnectors.schema:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: schema
@@ -623,12 +621,10 @@ components:
properties:
baseType:
type: string
- description: Must be set to microsoft.graph.externalItem. Required.
properties:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.property'
- description: 'The properties defined for the items in the connection. The minimum number of properties is one, the maximum is 128.'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.property'
additionalProperties:
type: object
microsoft.graph.aggregationOption:
@@ -687,31 +683,32 @@ components:
description: The name of the property to sort on. Required.
additionalProperties:
type: object
- microsoft.graph.searchHitsContainer:
- title: searchHitsContainer
+ microsoft.graph.alterationResponse:
+ title: alterationResponse
type: object
properties:
- aggregations:
+ originalQueryString:
+ type: string
+ nullable: true
+ queryAlteration:
+ $ref: '#/components/schemas/microsoft.graph.searchAlteration'
+ queryAlterationType:
+ $ref: '#/components/schemas/microsoft.graph.searchAlterationType'
+ additionalProperties:
+ type: object
+ microsoft.graph.searchResultSet:
+ title: searchResultSet
+ type: object
+ properties:
+ hitsContainers:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.searchAggregation'
- description: Contains the collection of aggregations computed based on the provided aggregationOption specified in the request.
- hits:
+ $ref: '#/components/schemas/microsoft.graph.searchHitsContainer'
+ searchTerms:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.searchHit'
- description: A collection of the search results.
- moreResultsAvailable:
- type: boolean
- description: 'Provides information if more results are available. Based on this information, you can adjust the from and size properties of the searchRequest accordingly.'
- nullable: true
- total:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: 'The total number of results. Note this is not the number of results on the page, but the total number of results satisfying the query.'
- format: int32
- nullable: true
+ type: string
+ nullable: true
additionalProperties:
type: object
odata.error:
@@ -723,79 +720,83 @@ components:
$ref: '#/components/schemas/odata.error.main'
additionalProperties:
type: object
- microsoft.graph.externalGroupMember:
+ microsoft.graph.externalConnectors.externalGroupMember:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: externalGroupMember
type: object
properties:
identitySource:
- $ref: '#/components/schemas/microsoft.graph.identitySourceType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.identitySourceType'
type:
- $ref: '#/components/schemas/microsoft.graph.externalGroupMemberType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalGroupMemberType'
additionalProperties:
type: object
- microsoft.graph.acl:
+ microsoft.graph.externalConnectors.acl:
title: acl
type: object
properties:
accessType:
- $ref: '#/components/schemas/microsoft.graph.accessType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.accessType'
identitySource:
- type: string
- description: The source of identity. Possible values are azureActiveDirectory or external.
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.identitySourceType'
type:
- $ref: '#/components/schemas/microsoft.graph.aclType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.aclType'
value:
type: string
- description: 'The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup.'
additionalProperties:
type: object
- microsoft.graph.externalItemContent:
+ microsoft.graph.externalConnectors.externalItemContent:
title: externalItemContent
type: object
properties:
type:
- $ref: '#/components/schemas/microsoft.graph.externalItemContentType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItemContentType'
value:
type: string
- description: The content for the externalItem. Required.
nullable: true
additionalProperties:
type: object
- microsoft.graph.properties:
+ microsoft.graph.externalConnectors.properties:
title: properties
type: object
additionalProperties:
type: object
- microsoft.graph.errorDetail:
- title: errorDetail
+ microsoft.graph.publicError:
+ title: publicError
type: object
properties:
+ code:
+ type: string
+ description: Represents the error code.
+ nullable: true
details:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.innerErrorDetail'
- description: 'A collection of inner errors, if any. Read-only, nullable.'
- errorCode:
+ $ref: '#/components/schemas/microsoft.graph.publicErrorDetail'
+ description: Details of the error.
+ innerError:
+ $ref: '#/components/schemas/microsoft.graph.publicInnerError'
+ message:
type: string
- description: 'The error code associated with the error, if any. Read-only, nullable.'
+ description: A non-localized message for the developer.
nullable: true
- message:
+ target:
type: string
- description: The human-readable error message. Read-only.
+ description: The target of the error.
nullable: true
additionalProperties:
type: object
- microsoft.graph.connectionOperationStatus:
+ microsoft.graph.externalConnectors.connectionOperationStatus:
title: connectionOperationStatus
enum:
- unspecified
- inprogress
- completed
- failed
+ - unknownFutureValue
type: string
- microsoft.graph.property:
+ microsoft.graph.externalConnectors.property:
title: property
type: object
properties:
@@ -804,36 +805,26 @@ components:
items:
type: string
nullable: true
- description: 'A set of aliases or a friendly names for the property. Maximum 32 characters. Each string must not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, '', '', <, >, `'
- isContent:
- type: boolean
- nullable: true
isQueryable:
type: boolean
- description: Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional.
nullable: true
isRefinable:
type: boolean
- description: Specifies if the property is refinable. Refinable properties can be used to filter search results in the Search API and add a refiner control in the Microsoft Search user experience. Optional.
nullable: true
isRetrievable:
type: boolean
- description: Specifies if the property is retrievable. Retrievable properties are returned in the result set when items are returned by the search API. Retrievable properties are also available to add to the display template used to render search results. Optional.
nullable: true
isSearchable:
type: boolean
- description: Specifies if the property is searchable. Only properties of type String or StringCollection can be searchable. Non-searchable properties are not added to the search index. Optional.
nullable: true
labels:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.label'
- description: 'Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). Supported labels: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName and fileExtension. Optional.'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.label'
name:
type: string
- description: 'The name of the property. Maximum 32 characters. Must not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, '', '', <, >, `'
type:
- $ref: '#/components/schemas/microsoft.graph.propertyType'
+ $ref: '#/components/schemas/microsoft.graph.externalConnectors.propertyType'
additionalProperties:
type: object
microsoft.graph.bucketAggregationDefinition:
@@ -873,60 +864,53 @@ components:
description: Contains the actual search terms of the request.
additionalProperties:
type: object
- microsoft.graph.searchAggregation:
- title: searchAggregation
+ microsoft.graph.searchAlteration:
+ title: searchAlteration
type: object
properties:
- buckets:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.searchBucket'
- description: Defines the actual buckets of the computed aggregation.
- field:
+ alteredHighlightedQueryString:
+ type: string
+ nullable: true
+ alteredQueryString:
type: string
- description: Defines on which field the aggregation was computed on.
nullable: true
+ alteredQueryTokens:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.alteredQueryToken'
additionalProperties:
type: object
- microsoft.graph.searchHit:
- title: searchHit
+ microsoft.graph.searchAlterationType:
+ title: searchAlterationType
+ enum:
+ - suggestion
+ - modification
+ type: string
+ microsoft.graph.searchHitsContainer:
+ title: searchHitsContainer
type: object
properties:
- contentSource:
- type: string
- description: The name of the content source which the externalItem is part of .
- nullable: true
- hitId:
- type: string
- description: The internal identifier for the item.
- nullable: true
- rank:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: The rank or the order of the result.
- format: int32
- nullable: true
- summary:
- type: string
- description: 'A summary of the result, if a summary is available.'
- nullable: true
- _id:
- type: string
+ aggregations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.searchAggregation'
+ description: Contains the collection of aggregations computed based on the provided aggregationOption specified in the request.
+ hits:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.searchHit'
+ description: A collection of the search results.
+ moreResultsAvailable:
+ type: boolean
+ description: 'Provides information if more results are available. Based on this information, you can adjust the from and size properties of the searchRequest accordingly.'
nullable: true
- _score:
+ total:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: 'The total number of results. Note this is not the number of results on the page, but the total number of results satisfying the query.'
format: int32
nullable: true
- _summary:
- type: string
- nullable: true
- resource:
- $ref: '#/components/schemas/microsoft.graph.entity'
- _source:
- $ref: '#/components/schemas/microsoft.graph.entity'
additionalProperties:
type: object
odata.error.main:
@@ -952,54 +936,85 @@ components:
description: The structure of this object is service-specific
additionalProperties:
type: object
- microsoft.graph.identitySourceType:
+ microsoft.graph.externalConnectors.identitySourceType:
title: identitySourceType
enum:
- azureActiveDirectory
- external
+ - unknownFutureValue
type: string
- microsoft.graph.externalGroupMemberType:
+ microsoft.graph.externalConnectors.externalGroupMemberType:
title: externalGroupMemberType
enum:
- user
- group
+ - unknownFutureValue
type: string
- microsoft.graph.accessType:
+ microsoft.graph.externalConnectors.accessType:
title: accessType
enum:
- grant
- deny
+ - unknownFutureValue
type: string
- microsoft.graph.aclType:
+ microsoft.graph.externalConnectors.aclType:
title: aclType
enum:
- user
- group
- everyone
- everyoneExceptGuests
+ - unknownFutureValue
type: string
- microsoft.graph.externalItemContentType:
+ microsoft.graph.externalConnectors.externalItemContentType:
title: externalItemContentType
enum:
- text
- html
- unknownFutureValue
type: string
- microsoft.graph.innerErrorDetail:
- title: innerErrorDetail
+ microsoft.graph.publicErrorDetail:
+ title: publicErrorDetail
type: object
properties:
+ code:
+ type: string
+ description: The error code.
+ nullable: true
message:
type: string
- description: The human-readable error message. Read-only.
+ description: The error message.
nullable: true
- source:
+ target:
type: string
- description: The source of the error. Read-only.
+ description: The target of the error.
nullable: true
additionalProperties:
type: object
- microsoft.graph.label:
+ microsoft.graph.publicInnerError:
+ title: publicInnerError
+ type: object
+ properties:
+ code:
+ type: string
+ description: The error code.
+ nullable: true
+ details:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.publicErrorDetail'
+ description: A collection of error details.
+ message:
+ type: string
+ description: The error message.
+ nullable: true
+ target:
+ type: string
+ description: The target of the error.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.externalConnectors.label:
title: label
enum:
- title
@@ -1011,19 +1026,21 @@ components:
- lastModifiedDateTime
- fileName
- fileExtension
+ - unknownFutureValue
type: string
- microsoft.graph.propertyType:
+ microsoft.graph.externalConnectors.propertyType:
title: propertyType
enum:
- - String
- - Int64
- - Double
- - DateTime
- - Boolean
- - StringCollection
- - Int64Collection
- - DoubleCollection
- - DateTimeCollection
+ - string
+ - int64
+ - double
+ - dateTime
+ - boolean
+ - stringCollection
+ - int64Collection
+ - doubleCollection
+ - dateTimeCollection
+ - unknownFutureValue
type: string
microsoft.graph.bucketAggregationRange:
title: bucketAggregationRange
@@ -1044,25 +1061,81 @@ components:
- keyAsString
- keyAsNumber
type: string
- microsoft.graph.searchBucket:
- title: searchBucket
+ microsoft.graph.alteredQueryToken:
+ title: alteredQueryToken
type: object
properties:
- aggregationFilterToken:
+ length:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ offset:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ suggestion:
type: string
- description: 'A token containing the encoded filter to aggregate search matches by the specific key value. To use the filter, pass the token as part of the aggregationFilter property in a searchRequest object, in the format ''{field}:/''{aggregationFilterToken}/''''. See an example.'
nullable: true
- count:
+ additionalProperties:
+ type: object
+ microsoft.graph.searchAggregation:
+ title: searchAggregation
+ type: object
+ properties:
+ buckets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.searchBucket'
+ description: Defines the actual buckets of the computed aggregation.
+ field:
+ type: string
+ description: Defines on which field the aggregation was computed on.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.searchHit:
+ title: searchHit
+ type: object
+ properties:
+ contentSource:
+ type: string
+ description: The name of the content source which the externalItem is part of .
+ nullable: true
+ hitId:
+ type: string
+ description: The internal identifier for the item.
+ nullable: true
+ rank:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: The approximate number of search matches that share the same value specified in the key property. Note that this number is not the exact number of matches.
+ description: The rank or the order of the result.
format: int32
nullable: true
- key:
+ summary:
+ type: string
+ description: 'A summary of the result, if a summary is available.'
+ nullable: true
+ _id:
+ type: string
+ nullable: true
+ _score:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ _summary:
type: string
- description: The discrete value of the field that an aggregation was computed on.
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.entity'
+ _source:
+ $ref: '#/components/schemas/microsoft.graph.entity'
additionalProperties:
type: object
odata.error.detail:
@@ -1079,6 +1152,27 @@ components:
type: string
additionalProperties:
type: object
+ microsoft.graph.searchBucket:
+ title: searchBucket
+ type: object
+ properties:
+ aggregationFilterToken:
+ type: string
+ description: 'A token containing the encoded filter to aggregate search matches by the specific key value. To use the filter, pass the token as part of the aggregationFilter property in a searchRequest object, in the format ''{field}:/''{aggregationFilterToken}/''''. See an example.'
+ nullable: true
+ count:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The approximate number of search matches that share the same value specified in the key property. Note that this number is not the exact number of matches.
+ format: int32
+ nullable: true
+ key:
+ type: string
+ description: The discrete value of the field that an aggregation was computed on.
+ nullable: true
+ additionalProperties:
+ type: object
responses:
error:
description: error
diff --git a/openApiDocs/beta/Security.yml b/openApiDocs/beta/Security.yml
index 894ec6e10ce..f753b121e27 100644
--- a/openApiDocs/beta/Security.yml
+++ b/openApiDocs/beta/Security.yml
@@ -3628,7 +3628,7 @@ components:
closedDateTime:
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: 'Time at which the alert was closed. 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'' (supports update).'
+ description: 'Time at which the alert was closed. 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 (supports update).'
format: date-time
nullable: true
cloudAppStates:
@@ -3652,7 +3652,7 @@ 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: 'Time at which the alert was created by the alert provider. 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''. Required.'
+ description: 'Time at which the alert was created by the alert provider. 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. Required.'
format: date-time
nullable: true
description:
@@ -3668,7 +3668,7 @@ components:
eventDateTime:
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: 'Time at which the event(s) that served as the trigger(s) to generate the alert occurred. 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''. Required.'
+ description: 'Time at which the event(s) that served as the trigger(s) to generate the alert occurred. 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. Required.'
format: date-time
nullable: true
feedback:
@@ -3706,7 +3706,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: 'Time at which the alert entity was last modified. 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''.'
+ description: 'Time at which the alert entity was last modified. 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
malwareStates:
@@ -4313,13 +4313,13 @@ 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: 'Timestamp when the action 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'''
+ description: 'Timestamp when the action 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 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
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 when the action 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Timestamp when the action 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
errorInfo:
@@ -4327,7 +4327,7 @@ components:
lastActionDateTime:
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 when this action was last updated. 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'''
+ description: 'Timestamp when this action was last updated. 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
name:
@@ -4422,7 +4422,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: 'DateTime string indicating when the Indicator expires. All indicators must have an expiration date to avoid stale indicators persisting in the system. 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''. Required.'
+ description: 'DateTime string indicating when the Indicator expires. All indicators must have an expiration date to avoid stale indicators persisting in the system. 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. Required.'
format: date-time
nullable: true
externalId:
@@ -4466,7 +4466,7 @@ components:
ingestedDateTime:
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: 'Stamped by the system when the indicator is ingested. 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'''
+ description: 'Stamped by the system when the indicator is ingested. 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
isActive:
@@ -4486,7 +4486,7 @@ components:
lastReportedDateTime:
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 time the indicator was seen. 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'''
+ description: 'The last time the indicator was seen. 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
malwareFamilyNames:
@@ -4770,7 +4770,7 @@ components:
updatedDateTime:
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 of the alert update. 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'''
+ description: 'Date and time of the alert update. 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
user:
@@ -4925,7 +4925,7 @@ components:
domainRegisteredDateTime:
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 when the destination domain was registered. 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'''
+ description: 'Date when the destination domain was registered. 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
localDnsName:
@@ -4989,7 +4989,7 @@ 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: 'Time at which the process was started. 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''.'
+ description: 'Time at which the process was started. 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
fileHash:
@@ -5007,7 +5007,7 @@ components:
parentProcessCreatedDateTime:
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 at which the parent process was started. 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''.'
+ description: 'DateTime at which the parent process was started. 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
parentProcessId:
@@ -5178,7 +5178,7 @@ components:
logonDateTime:
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: 'Time at which the sign-in occurred. 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''.'
+ description: 'Time at which the sign-in occurred. 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
logonId:
@@ -5324,13 +5324,13 @@ components:
firstSeenDateTime:
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 at which the earliest logon by this user account occurred (provider-determined period). 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''.'
+ description: 'DateTime at which the earliest logon by this user account occurred (provider-determined period). 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
lastSeenDateTime:
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 at which the latest logon by this user account occurred. 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''.'
+ description: 'DateTime at which the latest logon by this user account occurred. 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
logonId:
@@ -5350,7 +5350,7 @@ components:
properties:
description:
type: string
- description: 'Description of the NIC (e.g. Ethernet adapter, Wireless LAN adapter Local Area Connection <#>, etc.).'
+ description: 'Description of the NIC (e.g. Ethernet adapter, Wireless LAN adapter Local Area Connection <#/>, etc.).'
nullable: true
ipV4Address:
type: string
@@ -5512,7 +5512,7 @@ components:
updatedDateTime:
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 when the actionState was updated. 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'''
+ description: 'Timestamp when the actionState was updated. 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
user:
diff --git a/openApiDocs/beta/Sites.yml b/openApiDocs/beta/Sites.yml
index 5393bc1e63f..d391274c9bb 100644
--- a/openApiDocs/beta/Sites.yml
+++ b/openApiDocs/beta/Sites.yml
@@ -104,6 +104,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -130,6 +131,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -244,6 +246,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -270,6 +273,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -345,6 +349,11 @@ paths:
parameters:
group-id: $request.path.group-id
site-id: $request.path.site-id
+ termStore:
+ operationId: groups.Sites.GetTermStore
+ parameters:
+ group-id: $request.path.group-id
+ site-id: $request.path.site-id
onenote:
operationId: groups.Sites.GetOnenote
parameters:
@@ -508,6 +517,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -534,6 +544,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -633,6 +644,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -659,6 +671,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -721,6 +734,10 @@ paths:
operationId: sites.ListSites
parameters:
site-id: $request.path.site-id
+ termStore:
+ operationId: sites.GetTermStore
+ parameters:
+ site-id: $request.path.site-id
onenote:
operationId: sites.GetOnenote
parameters:
@@ -2086,12 +2103,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -2132,12 +2145,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -2195,12 +2204,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -2226,12 +2231,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -3815,12 +3816,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -3861,12 +3858,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -3924,12 +3917,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -3955,12 +3944,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -5560,6 +5545,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -5570,6 +5556,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -6666,6 +6653,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -6676,6 +6664,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -9042,12 +9031,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9095,12 +9080,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9172,12 +9153,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -9210,12 +9187,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -10956,12 +10929,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -11009,12 +10978,8 @@ paths:
type: object
required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -11086,12 +11051,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -11124,12 +11085,8 @@ paths:
type: string
x-ms-docs-key-type: contentType
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.contentType'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
@@ -12149,6 +12106,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -12159,6 +12117,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -13129,6 +13088,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -13139,6 +13099,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -21686,6 +21647,270 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/sites/{site-id}/permissions':
+ get:
+ tags:
+ - sites.permission
+ summary: Get permissions from sites
+ operationId: sites_ListPermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - $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:
+ enum:
+ - id
+ - id desc
+ - expirationDateTime
+ - expirationDateTime desc
+ - grantedTo
+ - grantedTo desc
+ - grantedToIdentities
+ - grantedToIdentities desc
+ - hasPassword
+ - hasPassword desc
+ - inheritedFrom
+ - inheritedFrom desc
+ - invitation
+ - invitation desc
+ - link
+ - link desc
+ - roles
+ - roles desc
+ - shareId
+ - shareId desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - expirationDateTime
+ - grantedTo
+ - grantedToIdentities
+ - hasPassword
+ - inheritedFrom
+ - invitation
+ - link
+ - roles
+ - shareId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of permission
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - sites.permission
+ summary: Create new navigation property to permissions for sites
+ operationId: sites_CreatePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/sites/{site-id}/permissions/{permission-id}':
+ get:
+ tags:
+ - sites.permission
+ summary: Get permissions from sites
+ operationId: sites_GetPermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - expirationDateTime
+ - grantedTo
+ - grantedToIdentities
+ - hasPassword
+ - inheritedFrom
+ - invitation
+ - link
+ - roles
+ - shareId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - sites.permission
+ summary: Update the navigation property permissions in sites
+ operationId: sites_UpdatePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - sites.permission
+ summary: Delete navigation property permissions for sites
+ operationId: sites_DeletePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant':
post:
tags:
@@ -21881,6 +22106,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -21907,6 +22133,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -22021,6 +22248,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -22047,6 +22275,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -22122,6 +22351,11 @@ paths:
parameters:
site-id: $request.path.site-id
site-id1: $request.path.site-id1
+ termStore:
+ operationId: sites.Sites.GetTermStore
+ parameters:
+ site-id: $request.path.site-id
+ site-id1: $request.path.site-id1
onenote:
operationId: sites.Sites.GetOnenote
parameters:
@@ -22374,6 +22608,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
- name: $expand
@@ -22400,6 +22635,7 @@ paths:
- pages
- permissions
- sites
+ - termStore
- onenote
type: string
responses:
@@ -22585,6 +22821,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -22610,6 +22847,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -22680,12 +22919,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -22699,6 +22941,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -22733,6 +22976,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -22753,6 +22997,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -22766,6 +23011,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -22781,6 +23027,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -22790,10 +23037,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.itemReference:
@@ -22987,6 +23236,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -23010,6 +23261,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -23249,9 +23502,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -23271,7 +23526,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -23373,7 +23628,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -23513,6 +23768,32 @@ components:
$ref: '#/components/schemas/microsoft.graph.root'
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.onenote:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -23657,6 +23938,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -23734,9 +24016,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -23806,13 +24090,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -23824,18 +24111,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -23855,9 +24147,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -24191,6 +24485,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -24370,6 +24675,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -24789,7 +25105,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -24806,7 +25122,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -24897,7 +25213,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -24942,7 +25258,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -25054,12 +25370,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -25134,6 +25450,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -25337,6 +25657,84 @@ components:
additionalProperties:
type: object
description: Represents an Azure Active Directory user object.
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.notebook:
allOf:
- $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel'
@@ -25397,7 +25795,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -25699,6 +26097,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -25711,6 +26117,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -25998,7 +26416,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -26033,7 +26451,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -26360,12 +26778,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -26375,16 +26793,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -26417,6 +26835,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -26450,15 +26906,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -26470,11 +26926,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -26482,11 +26938,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -26642,7 +27098,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -26777,7 +27233,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -26966,7 +27422,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -26980,7 +27436,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -27024,7 +27480,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -27033,7 +27489,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -27073,7 +27529,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -27106,26 +27562,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -27138,7 +27594,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -27423,7 +27879,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -27436,7 +27892,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -27622,20 +28078,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -27659,7 +28120,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -27667,7 +28128,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -27716,13 +28177,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -27830,6 +28291,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -28423,6 +28889,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -28633,13 +29101,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -28648,7 +29116,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -28688,6 +29156,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -28707,7 +29176,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -28729,12 +29198,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -28744,10 +29213,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -28759,12 +29229,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -28774,7 +29247,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -28835,7 +29308,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -28901,6 +29374,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -29008,6 +29483,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -29027,7 +29507,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -29068,8 +29548,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -29107,6 +29585,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -29135,6 +29615,104 @@ components:
description: The task lists in the users mailbox.
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.onenoteEntityHierarchyModel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel'
@@ -29152,7 +29730,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29166,7 +29744,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29203,6 +29781,15 @@ components:
$ref: '#/components/schemas/microsoft.graph.externalLink'
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -29650,7 +30237,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -29797,13 +30384,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -29942,7 +30529,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -29989,7 +30576,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 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'''
+ description: '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
name:
@@ -30188,18 +30775,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -30237,7 +30829,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -30277,7 +30869,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -30635,6 +31227,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -30646,6 +31239,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -30657,36 +31251,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -30703,7 +31300,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -30718,16 +31315,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -30750,7 +31357,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -30770,7 +31377,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -30830,6 +31437,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -31121,11 +31750,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -31994,7 +32624,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -32055,7 +32685,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -32067,7 +32697,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -32075,7 +32705,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -32116,7 +32746,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -32155,6 +32785,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -32908,6 +33548,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -33005,6 +33646,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -33052,6 +33705,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -33170,7 +33824,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -33321,11 +33975,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -33356,7 +34011,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -33385,15 +34040,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -33546,99 +34204,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -33767,6 +34332,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -33807,6 +34465,44 @@ components:
description: The tasks in this task list. Read-only. Nullable.
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -34206,7 +34902,7 @@ 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 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''.'
+ description: '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
message:
@@ -34485,7 +35181,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -34787,6 +35483,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -34798,10 +35512,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -35590,6 +36312,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -35597,6 +36320,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -35610,7 +36334,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -35618,7 +36342,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 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'''
+ description: '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
additionalProperties:
@@ -35943,6 +36667,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -36013,6 +36761,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -36021,6 +36771,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -36046,6 +36797,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -36084,9 +36839,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -36148,7 +36905,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -36159,19 +36916,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -36203,6 +36950,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.timeClockSettings:
title: timeClockSettings
type: object
@@ -36220,7 +37051,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -36379,13 +37210,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -36413,90 +37244,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.wellknownListName:
title: wellknownListName
enum:
@@ -37255,6 +38002,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -37350,6 +38098,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -37358,6 +38128,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -37373,6 +38151,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -37416,6 +38207,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -37583,21 +38406,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -37766,7 +38574,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -37776,7 +38584,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Teams.yml b/openApiDocs/beta/Teams.yml
index 29789b94d4a..b8661e39d31 100644
--- a/openApiDocs/beta/Teams.yml
+++ b/openApiDocs/beta/Teams.yml
@@ -250,6 +250,8 @@ paths:
enum:
- id
- id desc
+ - allowedInstallationScopes
+ - allowedInstallationScopes desc
- azureADAppId
- azureADAppId desc
- createdBy
@@ -280,6 +282,7 @@ paths:
items:
enum:
- id
+ - allowedInstallationScopes
- azureADAppId
- createdBy
- description
@@ -290,6 +293,8 @@ paths:
- teamsAppId
- version
- bot
+ - colorIcon
+ - outlineIcon
type: string
- name: $expand
in: query
@@ -303,6 +308,8 @@ paths:
enum:
- '*'
- bot
+ - colorIcon
+ - outlineIcon
type: string
responses:
'200':
@@ -389,6 +396,7 @@ paths:
items:
enum:
- id
+ - allowedInstallationScopes
- azureADAppId
- createdBy
- description
@@ -399,6 +407,8 @@ paths:
- teamsAppId
- version
- bot
+ - colorIcon
+ - outlineIcon
type: string
- name: $expand
in: query
@@ -412,6 +422,8 @@ paths:
enum:
- '*'
- bot
+ - colorIcon
+ - outlineIcon
type: string
responses:
'200':
@@ -426,14 +438,586 @@ paths:
parameters:
teamsApp-id: $request.path.teamsApp-id
teamsAppDefinition-id: $request.path.teamsAppDefinition-id
+ colorIcon:
+ operationId: appCatalogs.teamsApps.AppDefinitions.GetColorIcon
+ parameters:
+ teamsApp-id: $request.path.teamsApp-id
+ teamsAppDefinition-id: $request.path.teamsAppDefinition-id
+ outlineIcon:
+ operationId: appCatalogs.teamsApps.AppDefinitions.GetOutlineIcon
+ parameters:
+ teamsApp-id: $request.path.teamsApp-id
+ teamsAppDefinition-id: $request.path.teamsAppDefinition-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update the navigation property appDefinitions in appCatalogs
+ operationId: appCatalogs.teamsApps_UpdateAppDefinitions
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Delete navigation property appDefinitions for appCatalogs
+ operationId: appCatalogs.teamsApps_DeleteAppDefinitions
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get bot from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_GetBot
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update the navigation property bot in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_UpdateBot
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Delete navigation property bot for appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_DeleteBot
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get colorIcon from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_GetColorIcon
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - webUrl
+ - hostedContent
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - hostedContent
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ links:
+ hostedContent:
+ operationId: appCatalogs.teamsApps.appDefinitions.ColorIcon.GetHostedContent
+ parameters:
+ teamsApp-id: $request.path.teamsApp-id
+ teamsAppDefinition-id: $request.path.teamsAppDefinition-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update the navigation property colorIcon in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_UpdateColorIcon
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Delete navigation property colorIcon for appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_DeleteColorIcon
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get hostedContent from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_GetHostedContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - contentBytes
+ - contentType
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update the navigation property hostedContent in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_UpdateHostedContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Delete navigation property hostedContent for appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_DeleteHostedContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get media content for the navigation property hostedContent from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_GetHostedContentContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ responses:
+ '200':
+ description: Retrieved media content
+ content:
+ application/octet-stream:
+ schema:
+ type: string
+ format: binary
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update media content for the navigation property hostedContent in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.colorIcon_SetHostedContentContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New media content.
+ content:
+ application/octet-stream:
+ schema:
+ type: string
+ format: binary
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get outlineIcon from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_GetOutlineIcon
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - webUrl
+ - hostedContent
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - hostedContent
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ links:
+ hostedContent:
+ operationId: appCatalogs.teamsApps.appDefinitions.OutlineIcon.GetHostedContent
+ parameters:
+ teamsApp-id: $request.path.teamsApp-id
+ teamsAppDefinition-id: $request.path.teamsAppDefinition-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- appCatalogs.teamsApp
- summary: Update the navigation property appDefinitions in appCatalogs
- operationId: appCatalogs.teamsApps_UpdateAppDefinitions
+ summary: Update the navigation property outlineIcon in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_UpdateOutlineIcon
parameters:
- name: teamsApp-id
in: path
@@ -454,7 +1038,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition'
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
required: true
responses:
'204':
@@ -465,8 +1049,8 @@ paths:
delete:
tags:
- appCatalogs.teamsApp
- summary: Delete navigation property appDefinitions for appCatalogs
- operationId: appCatalogs.teamsApps_DeleteAppDefinitions
+ summary: Delete navigation property outlineIcon for appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions_DeleteOutlineIcon
parameters:
- name: teamsApp-id
in: path
@@ -493,12 +1077,12 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot':
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent':
get:
tags:
- appCatalogs.teamsApp
- summary: Get bot from appCatalogs
- operationId: appCatalogs.teamsApps.appDefinitions_GetBot
+ summary: Get hostedContent from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_GetHostedContent
parameters:
- name: teamsApp-id
in: path
@@ -525,6 +1109,8 @@ paths:
items:
enum:
- id
+ - contentBytes
+ - contentType
type: string
- name: $expand
in: query
@@ -544,15 +1130,15 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- appCatalogs.teamsApp
- summary: Update the navigation property bot in appCatalogs
- operationId: appCatalogs.teamsApps.appDefinitions_UpdateBot
+ summary: Update the navigation property hostedContent in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_UpdateHostedContent
parameters:
- name: teamsApp-id
in: path
@@ -573,7 +1159,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
required: true
responses:
'204':
@@ -584,8 +1170,8 @@ paths:
delete:
tags:
- appCatalogs.teamsApp
- summary: Delete navigation property bot for appCatalogs
- operationId: appCatalogs.teamsApps.appDefinitions_DeleteBot
+ summary: Delete navigation property hostedContent for appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_DeleteHostedContent
parameters:
- name: teamsApp-id
in: path
@@ -612,6 +1198,72 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value':
+ get:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Get media content for the navigation property hostedContent from appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_GetHostedContentContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ responses:
+ '200':
+ description: Retrieved media content
+ content:
+ application/octet-stream:
+ schema:
+ type: string
+ format: binary
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ put:
+ tags:
+ - appCatalogs.teamsApp
+ summary: Update media content for the navigation property hostedContent in appCatalogs
+ operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon_SetHostedContentContent
+ parameters:
+ - name: teamsApp-id
+ in: path
+ description: 'key: id of teamsApp'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsApp
+ - name: teamsAppDefinition-id
+ in: path
+ description: 'key: id of teamsAppDefinition'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: teamsAppDefinition
+ requestBody:
+ description: New media content.
+ content:
+ application/octet-stream:
+ schema:
+ type: string
+ format: binary
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/chats:
get:
tags:
@@ -663,6 +1315,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
- name: $expand
@@ -679,6 +1332,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
responses:
@@ -758,6 +1412,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
- name: $expand
@@ -774,6 +1429,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
responses:
@@ -796,6 +1452,10 @@ paths:
operationId: chats.ListMessages
parameters:
chat-id: $request.path.chat-id
+ permissionGrants:
+ operationId: chats.ListPermissionGrants
+ parameters:
+ chat-id: $request.path.chat-id
tabs:
operationId: chats.ListTabs
parameters:
@@ -1328,6 +1988,7 @@ paths:
items:
enum:
- id
+ - allowedInstallationScopes
- azureADAppId
- createdBy
- description
@@ -1338,6 +1999,8 @@ paths:
- teamsAppId
- version
- bot
+ - colorIcon
+ - outlineIcon
type: string
- name: $expand
in: query
@@ -1351,6 +2014,8 @@ paths:
enum:
- '*'
- bot
+ - colorIcon
+ - outlineIcon
type: string
responses:
'200':
@@ -1365,6 +2030,16 @@ paths:
parameters:
chat-id: $request.path.chat-id
teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ colorIcon:
+ operationId: chats.installedApps.TeamsAppDefinition.GetColorIcon
+ parameters:
+ chat-id: $request.path.chat-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ outlineIcon:
+ operationId: chats.installedApps.TeamsAppDefinition.GetOutlineIcon
+ parameters:
+ chat-id: $request.path.chat-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -1402,6 +2077,16 @@ paths:
parameters:
chat-id: $request.path.chat-id
teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ colorIcon:
+ operationId: chats.installedApps.TeamsAppDefinition.GetColorIcon
+ parameters:
+ chat-id: $request.path.chat-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ outlineIcon:
+ operationId: chats.installedApps.TeamsAppDefinition.GetOutlineIcon
+ parameters:
+ chat-id: $request.path.chat-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -2298,101 +2983,24 @@ paths:
schema:
type: string
x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New navigation property values
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- delete:
- tags:
- - chats.chatMessage
- summary: Delete navigation property hostedContents for chats
- operationId: chats.messages_DeleteHostedContents
- parameters:
- - name: chat-id
- in: path
- description: 'key: id of chat'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chat
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- - name: If-Match
- in: header
- description: ETag
- schema:
- type: string
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value':
- get:
- tags:
- - chats.chatMessage
- summary: Get media content for the navigation property hostedContents from chats
- operationId: chats.messages_GetHostedContentsContent
- parameters:
- - name: chat-id
- in: path
- description: 'key: id of chat'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chat
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ required: true
responses:
- '200':
- description: Retrieved media content
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
+ '204':
+ description: Success
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- put:
+ delete:
tags:
- chats.chatMessage
- summary: Update media content for the navigation property hostedContents in chats
- operationId: chats.messages_SetHostedContentsContent
+ summary: Delete navigation property hostedContents for chats
+ operationId: chats.messages_DeleteHostedContents
parameters:
- name: chat-id
in: path
@@ -2415,14 +3023,11 @@ paths:
schema:
type: string
x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New media content.
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- required: true
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
responses:
'204':
description: Success
@@ -2816,22 +3421,282 @@ paths:
x-ms-docs-key-type: chatMessage
responses:
'200':
- description: Success
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/chats/{chat-id}/messages/microsoft.graph.delta()':
+ get:
+ tags:
+ - chats.Functions
+ summary: Invoke function delta
+ operationId: chats.messages_delta
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/chats/{chat-id}/microsoft.graph.sendActivityNotification':
+ post:
+ tags:
+ - chats.Actions
+ summary: Invoke action sendActivityNotification
+ operationId: chats_sendActivityNotification
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ topic:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopic'
+ activityType:
+ type: string
+ nullable: true
+ chainId:
+ type: integer
+ format: int64
+ nullable: true
+ previewText:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ templateParameters:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValuePair'
+ recipient:
+ $ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient'
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/chats/{chat-id}/permissionGrants':
+ get:
+ tags:
+ - chats.resourceSpecificPermissionGrant
+ summary: Get permissionGrants from chats
+ operationId: chats_ListPermissionGrants
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - $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:
+ enum:
+ - id
+ - id desc
+ - deletedDateTime
+ - deletedDateTime desc
+ - clientAppId
+ - clientAppId desc
+ - clientId
+ - clientId desc
+ - permission
+ - permission desc
+ - permissionType
+ - permissionType desc
+ - resourceAppId
+ - resourceAppId desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - clientAppId
+ - clientId
+ - permission
+ - permissionType
+ - resourceAppId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of resourceSpecificPermissionGrant
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - chats.resourceSpecificPermissionGrant
+ summary: Create new navigation property to permissionGrants for chats
+ operationId: chats_CreatePermissionGrants
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}':
+ get:
+ tags:
+ - chats.resourceSpecificPermissionGrant
+ summary: Get permissionGrants from chats
+ operationId: chats_GetPermissionGrants
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: resourceSpecificPermissionGrant-id
+ in: path
+ description: 'key: id of resourceSpecificPermissionGrant'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: resourceSpecificPermissionGrant
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - clientAppId
+ - clientId
+ - permission
+ - permissionType
+ - resourceAppId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
content:
application/json:
schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- '/chats/{chat-id}/messages/microsoft.graph.delta()':
- get:
+ x-ms-docs-operation-type: operation
+ patch:
tags:
- - chats.Functions
- summary: Invoke function delta
- operationId: chats.messages_delta
+ - chats.resourceSpecificPermissionGrant
+ summary: Update the navigation property permissionGrants in chats
+ operationId: chats_UpdatePermissionGrants
parameters:
- name: chat-id
in: path
@@ -2840,24 +3705,31 @@ paths:
schema:
type: string
x-ms-docs-key-type: chat
+ - name: resourceSpecificPermissionGrant-id
+ in: path
+ description: 'key: id of resourceSpecificPermissionGrant'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: resourceSpecificPermissionGrant
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ required: true
responses:
- '200':
+ '204':
description: Success
- content:
- application/json:
- schema:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.chatMessage'
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: function
- '/chats/{chat-id}/microsoft.graph.sendActivityNotification':
- post:
+ x-ms-docs-operation-type: operation
+ delete:
tags:
- - chats.Actions
- summary: Invoke action sendActivityNotification
- operationId: chats_sendActivityNotification
+ - chats.resourceSpecificPermissionGrant
+ summary: Delete navigation property permissionGrants for chats
+ operationId: chats_DeletePermissionGrants
parameters:
- name: chat-id
in: path
@@ -2866,42 +3738,24 @@ paths:
schema:
type: string
x-ms-docs-key-type: chat
- requestBody:
- description: Action parameters
- content:
- application/json:
- schema:
- type: object
- properties:
- topic:
- $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopic'
- activityType:
- type: string
- nullable: true
- chainId:
- type: integer
- format: int64
- nullable: true
- previewText:
- $ref: '#/components/schemas/microsoft.graph.itemBody'
- templateParameters:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.keyValuePair'
- recipient:
- $ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient'
- teamsAppId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- required: true
+ - name: resourceSpecificPermissionGrant-id
+ in: path
+ description: 'key: id of resourceSpecificPermissionGrant'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: resourceSpecificPermissionGrant
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
responses:
'204':
description: Success
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: action
+ x-ms-docs-operation-type: operation
'/chats/{chat-id}/tabs':
get:
tags:
@@ -3409,7 +4263,6 @@ paths:
- specialization
- visibility
- webUrl
- - schedule
- channels
- group
- installedApps
@@ -3420,6 +4273,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
- name: $expand
in: query
@@ -3432,7 +4286,6 @@ paths:
items:
enum:
- '*'
- - schedule
- channels
- group
- installedApps
@@ -3443,6 +4296,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
responses:
'200':
@@ -3452,10 +4306,6 @@ paths:
schema:
$ref: '#/components/schemas/microsoft.graph.team'
links:
- schedule:
- operationId: groups.Team.GetSchedule
- parameters:
- group-id: $request.path.group-id
channels:
operationId: groups.Team.ListChannels
parameters:
@@ -3496,6 +4346,10 @@ paths:
operationId: groups.Team.GetTemplate
parameters:
group-id: $request.path.group-id
+ schedule:
+ operationId: groups.Team.GetSchedule
+ parameters:
+ group-id: $request.path.group-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -3630,7 +4484,6 @@ paths:
- specialization
- visibility
- webUrl
- - schedule
- channels
- group
- installedApps
@@ -3641,6 +4494,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
- name: $expand
in: query
@@ -3653,7 +4507,6 @@ paths:
items:
enum:
- '*'
- - schedule
- channels
- group
- installedApps
@@ -3664,6 +4517,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
responses:
'200':
@@ -3750,7 +4604,6 @@ paths:
- specialization
- visibility
- webUrl
- - schedule
- channels
- group
- installedApps
@@ -3761,6 +4614,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
- name: $expand
in: query
@@ -3773,7 +4627,6 @@ paths:
items:
enum:
- '*'
- - schedule
- channels
- group
- installedApps
@@ -3784,6 +4637,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
responses:
'200':
@@ -3793,10 +4647,6 @@ paths:
schema:
$ref: '#/components/schemas/microsoft.graph.team'
links:
- schedule:
- operationId: teams.GetSchedule
- parameters:
- team-id: $request.path.team-id
channels:
operationId: teams.ListChannels
parameters:
@@ -3837,6 +4687,10 @@ paths:
operationId: teams.GetTemplate
parameters:
team-id: $request.path.team-id
+ schedule:
+ operationId: teams.GetSchedule
+ parameters:
+ team-id: $request.path.team-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -4238,6 +5092,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -4248,6 +5103,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -5474,100 +6330,6 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value':
- get:
- tags:
- - teams.channel
- summary: Get media content for the navigation property hostedContents from teams
- operationId: teams.channels.messages_GetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: channel-id
- in: path
- description: 'key: id of channel'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: channel
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- responses:
- '200':
- description: Retrieved media content
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- put:
- tags:
- - teams.channel
- summary: Update media content for the navigation property hostedContents in teams
- operationId: teams.channels.messages_SetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: channel-id
- in: path
- description: 'key: id of channel'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: channel
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New media content.
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
'/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies':
get:
tags:
@@ -7548,6 +8310,7 @@ paths:
items:
enum:
- id
+ - allowedInstallationScopes
- azureADAppId
- createdBy
- description
@@ -7558,6 +8321,8 @@ paths:
- teamsAppId
- version
- bot
+ - colorIcon
+ - outlineIcon
type: string
- name: $expand
in: query
@@ -7571,6 +8336,8 @@ paths:
enum:
- '*'
- bot
+ - colorIcon
+ - outlineIcon
type: string
responses:
'200':
@@ -7585,6 +8352,16 @@ paths:
parameters:
team-id: $request.path.team-id
teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ colorIcon:
+ operationId: teams.installedApps.TeamsAppDefinition.GetColorIcon
+ parameters:
+ team-id: $request.path.team-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ outlineIcon:
+ operationId: teams.installedApps.TeamsAppDefinition.GetOutlineIcon
+ parameters:
+ team-id: $request.path.team-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -7622,6 +8399,16 @@ paths:
parameters:
team-id: $request.path.team-id
teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ colorIcon:
+ operationId: teams.installedApps.TeamsAppDefinition.GetColorIcon
+ parameters:
+ team-id: $request.path.team-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
+ outlineIcon:
+ operationId: teams.installedApps.TeamsAppDefinition.GetOutlineIcon
+ parameters:
+ team-id: $request.path.team-id
+ teamsAppInstallation-id: $request.path.teamsAppInstallation-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
@@ -8109,9 +8896,6 @@ paths:
$ref: '#/components/schemas/microsoft.graph.keyValuePair'
recipient:
$ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient'
- teamsAppId:
- type: string
- nullable: true
additionalProperties:
type: object
required: true
@@ -8678,6 +9462,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -8749,6 +9534,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -9389,6 +10175,7 @@ paths:
- folder
- image
- location
+ - media
- package
- pendingOperations
- photo
@@ -9399,6 +10186,7 @@ paths:
- shared
- sharepointIds
- size
+ - source
- specialFolder
- video
- webDavUrl
@@ -10389,56 +11177,16 @@ paths:
description: Retrieved navigation property
content:
application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- patch:
- tags:
- - teams.channel
- summary: Update the navigation property hostedContents in teams
- operationId: teams.primaryChannel.messages_UpdateHostedContents
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New navigation property values
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
- required: true
- responses:
- '204':
- description: Success
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- delete:
+ patch:
tags:
- teams.channel
- summary: Delete navigation property hostedContents for teams
- operationId: teams.primaryChannel.messages_DeleteHostedContents
+ summary: Update the navigation property hostedContents in teams
+ operationId: teams.primaryChannel.messages_UpdateHostedContents
parameters:
- name: team-id
in: path
@@ -10461,23 +11209,24 @@ paths:
schema:
type: string
x-ms-docs-key-type: chatMessageHostedContent
- - name: If-Match
- in: header
- description: ETag
- schema:
- type: string
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ required: true
responses:
'204':
description: Success
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value':
- get:
+ delete:
tags:
- teams.channel
- summary: Get media content for the navigation property hostedContents from teams
- operationId: teams.primaryChannel.messages_GetHostedContentsContent
+ summary: Delete navigation property hostedContents for teams
+ operationId: teams.primaryChannel.messages_DeleteHostedContents
parameters:
- name: team-id
in: path
@@ -10500,52 +11249,11 @@ paths:
schema:
type: string
x-ms-docs-key-type: chatMessageHostedContent
- responses:
- '200':
- description: Retrieved media content
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- put:
- tags:
- - teams.channel
- summary: Update media content for the navigation property hostedContents in teams
- operationId: teams.primaryChannel.messages_SetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
+ - name: If-Match
+ in: header
+ description: ETag
schema:
type: string
- x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New media content.
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- required: true
responses:
'204':
description: Success
@@ -15638,6 +16346,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
- name: $expand
@@ -15654,6 +16363,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
responses:
@@ -15748,6 +16458,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
- name: $expand
@@ -15764,6 +16475,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
responses:
@@ -15789,6 +16501,11 @@ paths:
parameters:
user-id: $request.path.user-id
chat-id: $request.path.chat-id
+ permissionGrants:
+ operationId: users.Chats.ListPermissionGrants
+ parameters:
+ user-id: $request.path.user-id
+ chat-id: $request.path.chat-id
tabs:
operationId: users.Chats.ListTabs
parameters:
@@ -15949,7 +16666,6 @@ paths:
- specialization
- visibility
- webUrl
- - schedule
- channels
- group
- installedApps
@@ -15960,6 +16676,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
- name: $expand
in: query
@@ -15972,7 +16689,6 @@ paths:
items:
enum:
- '*'
- - schedule
- channels
- group
- installedApps
@@ -15983,6 +16699,7 @@ paths:
- primaryChannel
- tags
- template
+ - schedule
type: string
responses:
'200':
@@ -16526,6 +17243,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
- name: $expand
@@ -16542,6 +17260,7 @@ paths:
- installedApps
- members
- messages
+ - permissionGrants
- tabs
type: string
responses:
@@ -16567,6 +17286,11 @@ paths:
parameters:
user-id: $request.path.user-id
userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
+ permissionGrants:
+ operationId: users.teamwork.installedApps.Chat.ListPermissionGrants
+ parameters:
+ user-id: $request.path.user-id
+ userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
tabs:
operationId: users.teamwork.installedApps.Chat.ListTabs
parameters:
@@ -16619,6 +17343,11 @@ paths:
parameters:
user-id: $request.path.user-id
userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
+ permissionGrants:
+ operationId: users.teamwork.installedApps.Chat.ListPermissionGrants
+ parameters:
+ user-id: $request.path.user-id
+ userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
tabs:
operationId: users.teamwork.installedApps.Chat.ListTabs
parameters:
@@ -16724,6 +17453,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -16732,6 +17463,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -16757,6 +17489,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.teamworkBot:
@@ -16766,6 +17502,36 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chat:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -16805,6 +17571,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -16872,11 +17643,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -16907,7 +17679,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -16936,32 +17708,25 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamworkActivityTopic:
@@ -17009,6 +17774,35 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.resourceSpecificPermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ - title: resourceSpecificPermissionGrant
+ type: object
+ properties:
+ clientAppId:
+ type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
+ nullable: true
+ clientId:
+ type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
+ nullable: true
+ permission:
+ type: string
+ description: The name of the permission. Read-only.
+ nullable: true
+ permissionType:
+ type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
+ nullable: true
+ resourceAppId:
+ type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.teamsTab:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -17052,7 +17846,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -17093,8 +17887,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -17132,6 +17924,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.channel:
@@ -17219,6 +18013,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -17242,6 +18038,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -17315,7 +18113,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -17329,7 +18127,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -17373,7 +18171,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -17382,7 +18180,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -17422,7 +18220,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -17455,26 +18253,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -17487,7 +18285,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -17696,7 +18494,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -17713,7 +18511,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -17804,7 +18602,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -17849,7 +18647,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -17961,12 +18759,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -18041,6 +18839,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -18368,7 +19170,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -18527,13 +19329,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -18701,6 +19503,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.identitySet:
title: identitySet
type: object
@@ -18790,9 +19600,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -18854,7 +19666,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -18875,6 +19687,20 @@ components:
- text
- html
type: string
+ microsoft.graph.directoryObject:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: directoryObject
+ type: object
+ properties:
+ deletedDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.teamsTabConfiguration:
title: teamsTabConfiguration
type: object
@@ -19286,6 +20112,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -19504,6 +20341,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -19767,9 +20615,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -19812,20 +20662,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.directoryObject:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: directoryObject
- type: object
- properties:
- deletedDateTime:
- 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
- format: date-time
- nullable: true
- additionalProperties:
- type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.assignedLabel:
title: assignedLabel
type: object
@@ -19927,12 +20763,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -19942,16 +20778,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -19988,30 +20824,6 @@ components:
additionalProperties:
type: object
description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
- microsoft.graph.resourceSpecificPermissionGrant:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.directoryObject'
- - title: resourceSpecificPermissionGrant
- type: object
- properties:
- clientAppId:
- type: string
- nullable: true
- clientId:
- type: string
- nullable: true
- permission:
- type: string
- nullable: true
- permissionType:
- type: string
- nullable: true
- resourceAppId:
- type: string
- nullable: true
- additionalProperties:
- type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.directorySetting:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -20050,15 +20862,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -20070,11 +20882,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -20082,11 +20894,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -20215,7 +21027,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -20309,7 +21121,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -20349,7 +21161,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -20464,6 +21276,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -20489,6 +21302,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -20617,7 +21432,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -20633,7 +21448,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -20950,6 +21765,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -21046,7 +21899,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -21359,7 +22212,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -21372,7 +22225,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -21551,20 +22404,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -21588,7 +22446,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -21596,7 +22454,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -21645,13 +22503,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -21759,6 +22617,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -22352,6 +23215,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -22540,13 +23405,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -22555,7 +23420,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -22595,6 +23460,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -22614,7 +23480,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -22636,12 +23502,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -22651,10 +23517,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -22666,12 +23533,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -22681,7 +23551,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -22742,7 +23612,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -22808,6 +23678,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -22950,7 +23822,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -22958,7 +23830,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 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'''
+ description: '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
additionalProperties:
@@ -23132,6 +24004,10 @@ components:
- openShiftRequest
- offerShiftRequest
- unknownFutureValue
+ - timeCard
+ - timeOffReason
+ - timeOff
+ - timeOffRequest
type: string
odata.error:
required:
@@ -23348,6 +24224,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -23360,6 +24244,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -23894,13 +24790,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -24027,7 +24923,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -24074,7 +24970,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 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'''
+ description: '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
name:
@@ -24120,7 +25016,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -24300,12 +25196,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -24319,6 +25218,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -24353,6 +25253,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -24373,6 +25274,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -24386,6 +25288,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -24401,6 +25304,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -24410,10 +25314,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -24438,6 +25344,32 @@ components:
$ref: '#/components/schemas/microsoft.graph.webPart'
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlan:
allOf:
- $ref: '#/components/schemas/microsoft.graph.plannerDelta'
@@ -24453,7 +25385,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -24525,7 +25457,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -24559,7 +25491,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -24927,7 +25859,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -25364,6 +26296,7 @@ components:
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -25375,6 +26308,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -25386,36 +26320,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -25432,7 +26369,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -25447,16 +26384,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -25479,7 +26426,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -25499,7 +26446,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -25559,6 +26506,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -25850,11 +26819,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -26732,7 +27702,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -26744,7 +27714,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -26752,7 +27722,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -26793,7 +27763,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -26832,6 +27802,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -27590,6 +28570,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -27687,6 +28668,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -27734,6 +28727,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -27852,7 +28846,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -28022,7 +29016,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -28032,7 +29026,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -28068,6 +29062,15 @@ components:
description: The structure of this object is service-specific
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -28684,6 +29687,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -28761,9 +29765,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -28833,13 +29839,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -28851,18 +29860,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -28882,9 +29896,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -28929,6 +29945,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.plannerPlanContainer:
title: plannerPlanContainer
type: object
@@ -29003,7 +30097,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29071,7 +30165,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29302,7 +30396,7 @@ 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 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''.'
+ description: '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
message:
@@ -29630,6 +30724,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -29641,10 +30753,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -30376,6 +31496,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -30383,6 +31504,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.shiftAvailability:
@@ -30705,6 +31827,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -31101,6 +32247,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.plannerContainerType:
title: plannerContainerType
enum:
@@ -31610,6 +32854,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -31705,6 +32950,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -31893,6 +33160,44 @@ components:
$ref: '#/components/schemas/microsoft.graph.workbookChartFont'
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.settingSourceType:
title: settingSourceType
enum:
diff --git a/openApiDocs/beta/Users.Actions.yml b/openApiDocs/beta/Users.Actions.yml
index 2dbdc14cf78..8edb0d4b97d 100644
--- a/openApiDocs/beta/Users.Actions.yml
+++ b/openApiDocs/beta/Users.Actions.yml
@@ -21076,6 +21076,55 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions':
+ post:
+ tags:
+ - users.Actions
+ summary: Invoke action batchRecordDecisions
+ operationId: users.pendingAccessReviewInstances_batchRecordDecisions
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: accessReviewInstance-id
+ in: path
+ description: 'key: id of accessReviewInstance'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: accessReviewInstance
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ decision:
+ type: string
+ nullable: true
+ justification:
+ type: string
+ nullable: true
+ principalId:
+ type: string
+ nullable: true
+ resourceId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.resetDecisions':
post:
tags:
@@ -21157,6 +21206,74 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/users/{user-id}/presence/microsoft.graph.clearPresence':
+ post:
+ tags:
+ - users.Actions
+ summary: Invoke action clearPresence
+ operationId: users.presence_clearPresence
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ sessionId:
+ type: string
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/users/{user-id}/presence/microsoft.graph.setPresence':
+ post:
+ tags:
+ - users.Actions
+ summary: Invoke action setPresence
+ operationId: users.presence_setPresence
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ sessionId:
+ type: string
+ availability:
+ type: string
+ activity:
+ type: string
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/users/{user-id}/teamwork/microsoft.graph.sendActivityNotification':
post:
tags:
@@ -21193,9 +21310,6 @@ paths:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.keyValuePair'
- teamsAppId:
- type: string
- nullable: true
additionalProperties:
type: object
required: true
@@ -21544,15 +21658,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -21564,11 +21678,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -21576,11 +21690,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -21696,7 +21810,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -21709,7 +21823,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -21959,7 +22073,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -21976,7 +22090,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -22067,7 +22181,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -22112,7 +22226,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -22224,12 +22338,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -22304,6 +22418,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -22698,7 +22816,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -22851,7 +22969,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -22917,6 +23035,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.outlookTask:
@@ -23345,7 +23465,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -23446,13 +23566,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -23524,7 +23644,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 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'''
+ description: '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
name:
@@ -23616,7 +23736,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -23632,7 +23752,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -23959,12 +24079,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -23974,16 +24094,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -24016,6 +24136,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -24112,7 +24270,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -24301,7 +24459,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -24315,7 +24473,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -24359,7 +24517,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -24368,7 +24526,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -24408,7 +24566,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -24441,26 +24599,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -24473,7 +24631,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -24815,6 +24973,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -24840,6 +24999,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -24852,20 +25013,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -24889,7 +25055,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -24897,7 +25063,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -24946,13 +25112,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -25060,6 +25226,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -25653,6 +25824,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -25901,13 +26074,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -25916,7 +26089,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -25956,6 +26129,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -25975,7 +26149,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -25997,12 +26171,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -26012,10 +26186,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -26027,12 +26202,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -26042,7 +26220,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -26175,6 +26353,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -26194,7 +26377,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -26235,8 +26418,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -26274,6 +26455,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -26542,6 +26725,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -26599,6 +26783,18 @@ components:
$ref: '#/components/schemas/microsoft.graph.lobbyBypassScope'
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.patternedRecurrence:
title: patternedRecurrence
type: object
@@ -26968,7 +27164,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -27223,7 +27419,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -27447,18 +27643,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -27496,7 +27697,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -27536,7 +27737,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -27872,6 +28073,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -27895,6 +28098,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -28083,12 +28288,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -28102,6 +28310,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -28136,6 +28345,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -28156,6 +28366,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -28169,6 +28380,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -28184,6 +28396,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -28193,10 +28406,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -28262,12 +28477,39 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.appConsentRequestScope:
title: appConsentRequestScope
type: object
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -28279,6 +28521,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -28290,36 +28533,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -28336,7 +28582,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -28351,16 +28597,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -28383,7 +28639,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -28403,7 +28659,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -28446,6 +28702,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -28737,11 +29015,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -29549,7 +29828,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -29610,7 +29889,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -29622,7 +29901,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -29630,7 +29909,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -29671,7 +29950,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -29710,6 +29989,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -29808,7 +30097,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -30659,6 +30948,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -30777,7 +31067,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -30928,11 +31218,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -30963,7 +31254,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -30992,15 +31283,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -31153,131 +31447,38 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
+ microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
+ - title: channel
type: object
properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
+ 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: Additional information about why schedule provisioning failed.
+ description: Read only. Timestamp at which the channel was created.
+ format: date-time
nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
+ description:
+ type: string
+ description: Optional textual description for the channel.
nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
+ displayName:
+ type: string
+ description: Channel name as it will appear to the user in Microsoft Teams.
+ email:
+ type: string
+ description: The email address for sending messages to the channel. Read-only.
nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
+ isFavoriteByDefault:
type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
+ description: 'Indicates whether the channel should automatically be marked ''favorite'' for all members of the team. Can only be set programmatically with Create team. Default: false.'
nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
- microsoft.graph.channel:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: channel
- type: object
- properties:
- 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. Timestamp at which the channel was created.
- format: date-time
- nullable: true
- description:
- type: string
- description: Optional textual description for the channel.
- nullable: true
- displayName:
- type: string
- description: Channel name as it will appear to the user in Microsoft Teams.
- email:
- type: string
- description: The email address for sending messages to the channel. Read-only.
- nullable: true
- isFavoriteByDefault:
- type: boolean
- description: 'Indicates whether the channel should automatically be marked ''favorite'' for all members of the team. Can only be set programmatically with Create team. Default: false.'
- nullable: true
- membershipType:
- $ref: '#/components/schemas/microsoft.graph.channelMembershipType'
- moderationSettings:
- $ref: '#/components/schemas/microsoft.graph.channelModerationSettings'
- webUrl:
+ membershipType:
+ $ref: '#/components/schemas/microsoft.graph.channelMembershipType'
+ moderationSettings:
+ $ref: '#/components/schemas/microsoft.graph.channelModerationSettings'
+ webUrl:
type: string
description: 'A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.'
nullable: true
@@ -31374,6 +31575,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -31467,6 +31761,30 @@ components:
- everyone
- unknownFutureValue
type: string
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.recurrencePattern:
title: recurrencePattern
type: object
@@ -31827,7 +32145,7 @@ 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 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''.'
+ description: '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
message:
@@ -31932,7 +32250,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -32314,6 +32632,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -32493,6 +32822,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -32653,9 +32993,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -32854,6 +33196,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -32931,9 +33274,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -33003,13 +33348,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -33021,18 +33369,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -33052,9 +33405,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -33163,52 +33518,148 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.request:
+ microsoft.graph.termStore.group:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: request
+ - title: group
type: object
properties:
- approvalId:
- type: string
- nullable: true
- completedDateTime:
+ 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: Date and time of group creation. Read-only.
format: date-time
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])$'
+ description:
type: string
- format: date-time
+ description: Description giving details on the term usage.
nullable: true
- customData:
+ displayName:
type: string
+ description: Name of group.
nullable: true
- status:
+ parentSiteId:
type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
additionalProperties:
type: object
- microsoft.graph.userIdentity:
+ microsoft.graph.termStore.set:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.identity'
- - title: userIdentity
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
type: object
properties:
- ipAddress:
+ 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: Indicates the client IP address used by user performing the activity (audit log only).
+ description: Date and time of set creation. Read-only.
+ format: date-time
nullable: true
- userPrincipalName:
+ description:
type: string
- description: The userPrincipalName attribute of the user.
+ description: Description giving details on the term usage.
nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
additionalProperties:
type: object
- microsoft.graph.accessReviewInstanceDecisionItemTarget:
- title: accessReviewInstanceDecisionItemTarget
+ microsoft.graph.request:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: request
+ type: object
+ properties:
+ approvalId:
+ type: string
+ nullable: true
+ 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
+ format: date-time
+ 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
+ format: date-time
+ nullable: true
+ customData:
+ type: string
+ nullable: true
+ status:
+ type: string
+ additionalProperties:
+ type: object
+ microsoft.graph.userIdentity:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.identity'
+ - title: userIdentity
+ type: object
+ properties:
+ ipAddress:
+ type: string
+ description: Indicates the client IP address used by user performing the activity (audit log only).
+ nullable: true
+ userPrincipalName:
+ type: string
+ description: The userPrincipalName attribute of the user.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.accessReviewInstanceDecisionItemTarget:
+ title: accessReviewInstanceDecisionItemTarget
type: object
additionalProperties:
type: object
@@ -33218,10 +33669,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -33991,6 +34450,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -33998,6 +34458,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -34011,7 +34472,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -34019,7 +34480,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 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'''
+ description: '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
additionalProperties:
@@ -34058,7 +34519,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -34072,7 +34533,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -34451,6 +34912,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -34459,6 +34922,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -34484,6 +34948,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -34522,9 +34990,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -34586,7 +35056,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -34597,19 +35067,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -34641,6 +35101,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.timeClockSettings:
title: timeClockSettings
type: object
@@ -34658,7 +35202,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -34817,13 +35361,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -34851,90 +35395,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.wellknownListName:
title: wellknownListName
enum:
@@ -34997,6 +35457,28 @@ components:
description: A collection of resources linked to the task.
additionalProperties:
type: object
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.weekIndex:
title: weekIndex
enum:
@@ -35255,6 +35737,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -35267,6 +35757,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -35575,6 +36077,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewApplyAction:
title: accessReviewApplyAction
type: object
@@ -35987,6 +36587,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -36082,6 +36683,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -36097,6 +36706,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -36140,6 +36762,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -36307,21 +36961,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
- - unknownFutureValue
- type: string
microsoft.graph.linkedResource:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -36346,6 +36985,15 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
+ enum:
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookCommentReply:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -36519,6 +37167,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.settingSourceType:
title: settingSourceType
enum:
@@ -36599,7 +37285,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -36609,7 +37295,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Users.Functions.yml b/openApiDocs/beta/Users.Functions.yml
index 09a6b6576a6..9170853e616 100644
--- a/openApiDocs/beta/Users.Functions.yml
+++ b/openApiDocs/beta/Users.Functions.yml
@@ -32,6 +32,77 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: function
+ '/users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - users.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: users.appConsentRequestsForApproval.userConsentRequests_filterByCurrentUser
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: appConsentRequest-id
+ in: path
+ description: 'key: id of appConsentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: appConsentRequest
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/users/{user-id}/appConsentRequestsForApproval/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - users.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: users.appConsentRequestsForApproval_filterByCurrentUser
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/users/{user-id}/approvals/microsoft.graph.filterByCurrentUser(on={on})':
get:
tags:
@@ -2922,6 +2993,55 @@ components:
description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems.
additionalProperties:
type: object
+ microsoft.graph.consentRequestFilterByCurrentUserOptions:
+ title: consentRequestFilterByCurrentUserOptions
+ enum:
+ - reviewer
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.request'
+ - title: userConsentRequest
+ type: object
+ properties:
+ reason:
+ type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
+ nullable: true
+ approval:
+ $ref: '#/components/schemas/microsoft.graph.approval'
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: appConsentRequest
+ type: object
+ properties:
+ appDisplayName:
+ type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
+ nullable: true
+ appId:
+ type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
+ consentType:
+ type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
+ nullable: true
+ pendingScopes:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
+ userConsentRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
+ additionalProperties:
+ type: object
microsoft.graph.approvalFilterByCurrentUserOptions:
title: approvalFilterByCurrentUserOptions
enum:
@@ -3044,7 +3164,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -3179,7 +3299,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -3479,7 +3599,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -3492,7 +3612,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -3714,6 +3834,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -4128,7 +4253,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -4282,7 +4407,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -4299,7 +4424,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -4390,7 +4515,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -4435,7 +4560,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -4547,12 +4672,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -4627,6 +4752,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -4926,27 +5055,77 @@ components:
$ref: '#/components/schemas/microsoft.graph.userActivity'
additionalProperties:
type: object
+ microsoft.graph.request:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: request
+ type: object
+ properties:
+ approvalId:
+ type: string
+ nullable: true
+ 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
+ format: date-time
+ 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
+ format: date-time
+ nullable: true
+ customData:
+ type: string
+ nullable: true
+ status:
+ type: string
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequestScope:
+ title: appConsentRequestScope
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the scope.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.approvalStep:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
@@ -4969,13 +5148,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -5122,7 +5301,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -5169,7 +5348,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 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'''
+ description: '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
name:
@@ -5201,15 +5380,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -5221,11 +5400,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -5233,11 +5412,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -5596,6 +5775,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -5887,11 +6088,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -6609,7 +6811,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -6644,7 +6846,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -6971,12 +7173,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -6986,16 +7188,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -7028,6 +7230,44 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.oAuth2PermissionGrant:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: oAuth2PermissionGrant
+ type: object
+ properties:
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.scopedRoleMembership:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -7111,7 +7351,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -7125,7 +7365,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -7169,7 +7409,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -7178,7 +7418,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -7218,7 +7458,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -7251,26 +7491,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -7283,7 +7523,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -7625,6 +7865,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -7650,34 +7891,12 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
type: object
- microsoft.graph.appConsentRequest:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: appConsentRequest
- type: object
- properties:
- appDisplayName:
- type: string
- nullable: true
- appId:
- type: string
- consentType:
- type: string
- nullable: true
- pendingScopes:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
- userConsentRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
- additionalProperties:
- type: object
microsoft.graph.accessReviewInstance:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -7687,7 +7906,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -7695,7 +7914,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -7744,13 +7963,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -8072,6 +8291,8 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
@@ -8236,13 +8457,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -8251,7 +8472,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -8291,6 +8512,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -8310,7 +8532,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -8332,12 +8554,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -8347,10 +8569,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -8362,12 +8585,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -8377,7 +8603,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -8438,7 +8664,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -8504,6 +8730,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -8611,6 +8839,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -8630,7 +8863,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -8671,8 +8904,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -8710,6 +8941,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -8768,6 +9001,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.identitySet:
+ title: identitySet
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ device:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ user:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ additionalProperties:
+ type: object
microsoft.graph.identity:
title: identity
type: object
@@ -9830,7 +10075,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -9966,18 +10211,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -10015,7 +10265,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -10055,7 +10305,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -10332,18 +10582,6 @@ components:
$ref: '#/components/schemas/microsoft.graph.user'
additionalProperties:
type: object
- microsoft.graph.identitySet:
- title: identitySet
- type: object
- properties:
- application:
- $ref: '#/components/schemas/microsoft.graph.identity'
- device:
- $ref: '#/components/schemas/microsoft.graph.identity'
- user:
- $ref: '#/components/schemas/microsoft.graph.identity'
- additionalProperties:
- type: object
microsoft.graph.quota:
title: quota
type: object
@@ -10464,6 +10702,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -10487,6 +10727,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -10675,12 +10917,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -10694,6 +10939,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -10728,6 +10974,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -10748,6 +10995,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -10761,6 +11009,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -10776,6 +11025,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -10785,10 +11035,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -10854,40 +11106,35 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.appConsentRequestScope:
- title: appConsentRequestScope
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.userConsentRequest:
+ microsoft.graph.termStore.store:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.request'
- - title: userConsentRequest
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
type: object
properties:
- reason:
+ defaultLanguageTag:
type: string
- nullable: true
- approval:
- $ref: '#/components/schemas/microsoft.graph.approval'
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -10904,7 +11151,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -10919,16 +11166,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -10951,7 +11208,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -10971,7 +11228,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -11207,7 +11464,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -11268,7 +11525,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -11280,7 +11537,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -11288,7 +11545,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -11329,7 +11586,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -11368,6 +11625,16 @@ components:
description: Access this property from the derived type itemInsights.
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -11454,7 +11721,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -11488,7 +11755,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -12229,6 +12496,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -12326,6 +12594,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -12373,6 +12653,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -12491,7 +12772,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -12642,11 +12923,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -12677,7 +12959,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -12706,15 +12988,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -12867,99 +13152,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -13088,6 +13280,99 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.schedule:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
+ type: object
+ properties:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
microsoft.graph.userScopeTeamsAppInstallation:
allOf:
- $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
@@ -13511,7 +13796,7 @@ 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 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''.'
+ description: '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
message:
@@ -13576,7 +13861,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -13958,6 +14243,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -14137,6 +14433,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -14297,9 +14604,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -14498,6 +14807,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -14575,9 +14885,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -14647,13 +14959,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -14665,18 +14980,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -14696,9 +15016,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -14807,32 +15129,82 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.request:
+ microsoft.graph.termStore.group:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: request
+ - title: group
type: object
properties:
- approvalId:
- type: string
- nullable: true
- completedDateTime:
+ 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: Date and time of group creation. Read-only.
format: date-time
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])$'
+ description:
type: string
- format: date-time
+ description: Description giving details on the term usage.
nullable: true
- customData:
+ displayName:
type: string
+ description: Name of group.
nullable: true
- status:
+ parentSiteId:
type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
additionalProperties:
type: object
microsoft.graph.userIdentity:
@@ -14851,6 +15223,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -14862,10 +15252,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -15227,6 +15625,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -15234,6 +15633,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -15247,7 +15647,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -15255,7 +15655,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 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'''
+ description: '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
additionalProperties:
@@ -15294,7 +15694,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -15362,7 +15762,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -15681,6 +16081,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -15751,6 +16175,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -15759,6 +16185,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -15784,6 +16211,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -15822,9 +16253,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -15886,7 +16319,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -15897,19 +16330,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -15941,6 +16364,90 @@ components:
- moderate
- unknownFutureValue
type: string
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
+ enum:
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.operationStatus:
title: operationStatus
enum:
@@ -15966,7 +16473,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -16125,13 +16632,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -16159,90 +16666,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
odata.error.detail:
required:
- code
@@ -16481,6 +16904,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -16493,6 +16924,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -16801,6 +17244,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewApplyAction:
title: accessReviewApplyAction
type: object
@@ -17076,6 +17617,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -17171,6 +17713,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -17179,6 +17743,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -17194,6 +17766,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -17237,6 +17822,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -17404,19 +18021,13 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
- enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
enum:
- - everyone
- - everyoneExceptGuests
- - moderators
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
- unknownFutureValue
type: string
microsoft.graph.workbookCommentReply:
@@ -17592,6 +18203,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.insightIdentity:
title: insightIdentity
type: object
@@ -17660,7 +18309,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -17670,7 +18319,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/beta/Users.yml b/openApiDocs/beta/Users.yml
index 2ad860a1ca7..db22f44ab70 100644
--- a/openApiDocs/beta/Users.yml
+++ b/openApiDocs/beta/Users.yml
@@ -286,6 +286,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -357,6 +358,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -572,6 +574,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -643,6 +646,7 @@ paths:
- licenseDetails
- manager
- memberOf
+ - oauth2PermissionGrants
- ownedDevices
- ownedObjects
- registeredDevices
@@ -738,6 +742,10 @@ paths:
operationId: users.ListMemberOf
parameters:
user-id: $request.path.user-id
+ oauth2PermissionGrants:
+ operationId: users.ListOauth2PermissionGrants
+ parameters:
+ user-id: $request.path.user-id
ownedDevices:
operationId: users.ListOwnedDevices
parameters:
@@ -2359,6 +2367,209 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/users/{user-id}/oauth2PermissionGrants':
+ get:
+ tags:
+ - users.oAuth2PermissionGrant
+ summary: Get oauth2PermissionGrants from users
+ operationId: users_ListOauth2PermissionGrants
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - $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:
+ enum:
+ - id
+ - id desc
+ - clientId
+ - clientId desc
+ - consentType
+ - consentType desc
+ - expiryTime
+ - expiryTime desc
+ - principalId
+ - principalId desc
+ - resourceId
+ - resourceId desc
+ - scope
+ - scope desc
+ - startTime
+ - startTime desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - clientId
+ - consentType
+ - expiryTime
+ - principalId
+ - resourceId
+ - scope
+ - startTime
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of oAuth2PermissionGrant
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ '/users/{user-id}/oauth2PermissionGrants/$ref':
+ get:
+ tags:
+ - users.oAuth2PermissionGrant
+ summary: Get ref of oauth2PermissionGrants from users
+ operationId: users_ListRefOauth2PermissionGrants
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - $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:
+ enum:
+ - id
+ - id desc
+ - clientId
+ - clientId desc
+ - consentType
+ - consentType desc
+ - expiryTime
+ - expiryTime desc
+ - principalId
+ - principalId desc
+ - resourceId
+ - resourceId desc
+ - scope
+ - scope desc
+ - startTime
+ - startTime desc
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property links
+ content:
+ application/json:
+ schema:
+ title: Collection of links of oAuth2PermissionGrant
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ type: string
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - users.oAuth2PermissionGrant
+ summary: Create new navigation property ref to oauth2PermissionGrants for users
+ operationId: users_CreateRefOauth2PermissionGrants
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ requestBody:
+ description: New navigation property ref value
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '201':
+ description: Created navigation property link.
+ content:
+ application/json:
+ schema:
+ type: object
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/users/{user-id}/outlook':
get:
tags:
@@ -9568,6 +9779,7 @@ paths:
- id
- contributionToContentDiscoveryAsOrganizationDisabled
- contributionToContentDiscoveryDisabled
+ - itemInsights
- regionalAndLanguageSettings
- shiftPreferences
type: string
@@ -9582,6 +9794,7 @@ paths:
items:
enum:
- '*'
+ - itemInsights
- regionalAndLanguageSettings
- shiftPreferences
type: string
@@ -9593,6 +9806,10 @@ paths:
schema:
$ref: '#/components/schemas/microsoft.graph.userSettings'
links:
+ itemInsights:
+ operationId: users.Settings.GetItemInsights
+ parameters:
+ user-id: $request.path.user-id
regionalAndLanguageSettings:
operationId: users.Settings.GetRegionalAndLanguageSettings
parameters:
@@ -9654,6 +9871,105 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/users/{user-id}/settings/itemInsights':
+ get:
+ tags:
+ - users.userSettings
+ summary: Get itemInsights from users
+ operationId: users.settings_GetItemInsights
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - isEnabled
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - users.userSettings
+ summary: Update the navigation property itemInsights in users
+ operationId: users.settings_UpdateItemInsights
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - users.userSettings
+ summary: Delete navigation property itemInsights for users
+ operationId: users.settings_DeleteItemInsights
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/users/{user-id}/settings/regionalAndLanguageSettings':
get:
tags:
@@ -11632,7 +11948,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -11649,7 +11965,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -11740,7 +12056,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -11785,7 +12101,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -11897,12 +12213,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -11977,6 +12293,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable.'
+ oauth2PermissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant'
ownedDevices:
type: array
items:
@@ -12258,17 +12578,55 @@ components:
$ref: '#/components/schemas/microsoft.graph.targetPolicyEndpoints'
additionalProperties:
type: object
- microsoft.graph.outlookUser:
+ microsoft.graph.oAuth2PermissionGrant:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- - title: outlookUser
+ - title: oAuth2PermissionGrant
type: object
properties:
- masterCategories:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.outlookCategory'
- description: A list of categories defined for the user.
+ clientId:
+ type: string
+ description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
+ consentType:
+ type: string
+ description: 'Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).'
+ nullable: true
+ expiryTime:
+ 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: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ principalId:
+ type: string
+ description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal.'
+ nullable: true
+ resourceId:
+ type: string
+ description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user.
+ scope:
+ type: string
+ description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.'
+ nullable: true
+ startTime:
+ 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: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.'
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.outlookUser:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: outlookUser
+ type: object
+ properties:
+ masterCategories:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.outlookCategory'
+ description: A list of categories defined for the user.
taskFolders:
type: array
items:
@@ -12441,7 +12799,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 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'''
+ description: '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
name:
@@ -12521,12 +12879,24 @@ components:
contributionToContentDiscoveryDisabled:
type: boolean
description: 'When set to true, the delegate access to the user''s trending API is disabled. When set to true, documents in the user''s Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.'
+ itemInsights:
+ $ref: '#/components/schemas/microsoft.graph.userInsightsSettings'
regionalAndLanguageSettings:
$ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings'
shiftPreferences:
$ref: '#/components/schemas/microsoft.graph.shiftPreferences'
additionalProperties:
type: object
+ microsoft.graph.userInsightsSettings:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: userInsightsSettings
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ additionalProperties:
+ type: object
microsoft.graph.regionalAndLanguageSettings:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -12693,7 +13063,7 @@ components:
lastSignInDateTime:
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 sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
+ description: 'The last interactive sign-in date for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp 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''. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.'
format: date-time
nullable: true
lastSignInRequestId:
@@ -12728,7 +13098,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -13055,12 +13425,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
creationTimestamp:
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 time when the app role assignment was 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only. Does not support $filter.'
+ description: 'The time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -13070,16 +13440,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -13122,15 +13492,15 @@ components:
nullable: true
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -13142,11 +13512,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -13154,11 +13524,11 @@ components:
nullable: true
isShared:
type: boolean
- description: 'True if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isSharedWithMe:
type: boolean
- description: 'True if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.'
nullable: true
isTallyingResponses:
type: boolean
@@ -13314,7 +13684,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -13449,7 +13819,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
children:
@@ -13638,7 +14008,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -13652,7 +14022,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -13696,7 +14066,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -13705,7 +14075,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -13745,7 +14115,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
resourceBehaviorOptions:
@@ -13778,26 +14148,26 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupAccessType'
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isFavorite:
type: boolean
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenConversationsCount:
maximum: 2147483647
@@ -13810,7 +14180,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
unseenMessagesCount:
@@ -14095,7 +14465,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -14108,7 +14478,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -14344,6 +14714,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site.
items:
type: array
items:
@@ -14369,6 +14740,8 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.site'
description: The collection of the sub-sites under this site.
+ termStore:
+ $ref: '#/components/schemas/microsoft.graph.termStore.store'
onenote:
$ref: '#/components/schemas/microsoft.graph.onenote'
additionalProperties:
@@ -14381,20 +14754,25 @@ components:
properties:
appDisplayName:
type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
nullable: true
appId:
type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
consentType:
type: string
+ description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.'
nullable: true
pendingScopes:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
userConsentRequests:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
additionalProperties:
type: object
microsoft.graph.approval:
@@ -14418,7 +14796,7 @@ components:
endDateTime:
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 when review instance is scheduled to end.
+ description: 'DateTime when review instance is scheduled to end.The DatetimeOffset 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
scope:
@@ -14426,7 +14804,7 @@ components:
startDateTime:
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 when review instance is scheduled to start. May be in the future.
+ description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset 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
status:
@@ -14475,13 +14853,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -14589,6 +14967,11 @@ components:
nullable: true
chassisType:
$ref: '#/components/schemas/microsoft.graph.chassisType'
+ chromeOSDeviceInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty'
+ description: List of properties of the ChromeOS Device.
complianceGracePeriodExpirationDateTime:
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
@@ -15356,13 +15739,13 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceCategory:
@@ -15371,7 +15754,7 @@ components:
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -15411,6 +15794,7 @@ components:
items:
type: string
nullable: true
+ description: List of hostNames for the device.
isCompliant:
type: boolean
description: 'true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.'
@@ -15430,7 +15814,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -15452,12 +15836,12 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
registrationDateTime:
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 of when the device was registered. 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''. Read-only.'
+ description: 'Date and time of when the device was registered. 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. Read-only.'
format: date-time
nullable: true
systemLabels:
@@ -15467,10 +15851,11 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
kind:
type: string
+ description: Form factor of device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
manufacturer:
type: string
@@ -15482,12 +15867,15 @@ components:
nullable: true
name:
type: string
+ description: Friendly name of a device. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
platform:
type: string
+ description: Platform of device. Only returned if user signs in with a Microsoft account as part of Project Rome. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
status:
type: string
+ description: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
nullable: true
usageRights:
type: array
@@ -15497,7 +15885,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -15558,7 +15946,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.meetingCapabilities'
- description: 'The list of meeting capabilities. Possible values are: questionAndAnswer.'
+ description: 'The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.'
chatInfo:
$ref: '#/components/schemas/microsoft.graph.chatInfo'
creationDateTime:
@@ -15624,6 +16012,8 @@ components:
type: string
description: The video teleconferencing ID. Read-only.
nullable: true
+ meetingAttendanceReport:
+ $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport'
additionalProperties:
type: object
microsoft.graph.presence:
@@ -15731,6 +16121,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
description: A collection of all the messages in the chat. Nullable.
+ permissionGrants:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant'
+ description: A collection of permissions granted to apps for the chat.
tabs:
type: array
items:
@@ -15750,7 +16145,7 @@ 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: Read only. Timestamp at which the team was created.
+ description: Timestamp at which the team was created.
format: date-time
nullable: true
description:
@@ -15791,8 +16186,6 @@ components:
type: string
description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.'
nullable: true
- schedule:
- $ref: '#/components/schemas/microsoft.graph.schedule'
channels:
type: array
items:
@@ -15830,6 +16223,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.teamworkTag'
template:
$ref: '#/components/schemas/microsoft.graph.teamsTemplate'
+ schedule:
+ $ref: '#/components/schemas/microsoft.graph.schedule'
additionalProperties:
type: object
microsoft.graph.userTeamwork:
@@ -15958,13 +16353,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -16084,6 +16479,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.translationLanguageOverride'
+ description: 'Translation override behavior for languages, if any.Returned by default.'
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
untranslatedLanguages:
@@ -16091,6 +16487,7 @@ components:
items:
type: string
nullable: true
+ description: 'The list of languages the user does not need translated. This is computed from the authoringLanguages collection in regionalAndLanguageSettings, and the languageOverrides collection in translationPreferences. The list specifies neutral culture values that include the language code without any country or region association. For example, it would specify ''fr'' for the neutral French culture, but not ''fr-FR'' for the French culture in France. Returned by default. Read only.'
additionalProperties:
type: object
microsoft.graph.changeTrackedEntity:
@@ -16104,7 +16501,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -16112,7 +16509,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 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'''
+ description: '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
additionalProperties:
@@ -16397,7 +16794,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -16581,7 +16978,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -16788,18 +17185,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -16837,7 +17239,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -16877,7 +17279,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -17258,6 +17660,8 @@ components:
$ref: '#/components/schemas/microsoft.graph.image'
location:
$ref: '#/components/schemas/microsoft.graph.geoCoordinates'
+ media:
+ $ref: '#/components/schemas/microsoft.graph.media'
package:
$ref: '#/components/schemas/microsoft.graph.package'
pendingOperations:
@@ -17281,6 +17685,8 @@ components:
description: Size of the item in bytes. Read-only.
format: int64
nullable: true
+ source:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSource'
specialFolder:
$ref: '#/components/schemas/microsoft.graph.specialFolder'
video:
@@ -17469,12 +17875,15 @@ components:
nullable: true
isDeletable:
type: boolean
+ description: Indicates whether this column can be deleted.
nullable: true
isReorderable:
type: boolean
+ description: Indicates whether values in the column can be reordered. Read-only.
nullable: true
isSealed:
type: boolean
+ description: Specifies whether column can be changed.
nullable: true
lookup:
$ref: '#/components/schemas/microsoft.graph.lookupColumn'
@@ -17488,6 +17897,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.personOrGroupColumn'
propagateChanges:
type: boolean
+ description: If 'True' changes to this column will be propagated to lists that implement the column.
nullable: true
readOnly:
type: boolean
@@ -17522,6 +17932,7 @@ components:
items:
type: string
nullable: true
+ description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites.
description:
type: string
description: The descriptive text for the item.
@@ -17542,6 +17953,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.itemReference'
isBuiltIn:
type: boolean
+ description: Specifies if a content type is a built-in content type.
nullable: true
name:
type: string
@@ -17555,6 +17967,7 @@ components:
nullable: true
propagateChanges:
type: boolean
+ description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.'
nullable: true
readOnly:
type: boolean
@@ -17570,6 +17983,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentType'
+ description: The collection of content types that are ancestors of this content type.
columnLinks:
type: array
items:
@@ -17579,10 +17993,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: Column order information in a content type.
columns:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.columnDefinition'
+ description: The collection of column definitions for this contentType.
additionalProperties:
type: object
microsoft.graph.sitePage:
@@ -17648,12 +18064,39 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.store:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: store
+ type: object
+ properties:
+ defaultLanguageTag:
+ type: string
+ description: Default language of the term store.
+ languageTags:
+ type: array
+ items:
+ type: string
+ description: List of languages for the term store.
+ groups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ description: Collection of all groups available in the term store.
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: Collection of all sets available in the term store.
+ additionalProperties:
+ type: object
microsoft.graph.appConsentRequestScope:
title: appConsentRequestScope
type: object
properties:
displayName:
type: string
+ description: The name of the scope.
nullable: true
additionalProperties:
type: object
@@ -17665,6 +18108,7 @@ components:
properties:
reason:
type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
nullable: true
approval:
$ref: '#/components/schemas/microsoft.graph.approval'
@@ -17676,36 +18120,39 @@ components:
- title: approvalStep
type: object
properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the step is assigned to the calling user to review. Read-only.
+ nullable: true
displayName:
type: string
+ description: The label provided by the policy creator to identify an approval step. Read-only.
nullable: true
justification:
type: string
+ description: The justification associated with the approval step decision.
nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.identity'
reviewedDateTime:
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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
reviewResult:
type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScope:
title: accessReviewScope
type: object
- properties:
- query:
- type: string
- description: The query specifying what will be reviewed. See table for examples.
- nullable: true
- queryType:
- type: string
- description: The type of query. Examples include MicrosoftGraph and ARM.
- nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewInstanceDecisionItem:
@@ -17722,7 +18169,7 @@ components:
appliedDateTime:
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 DateTime when the approval decision was applied.
+ description: 'The timestamp when the approval decision was applied. The DatetimeOffset 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
applyResult:
@@ -17737,16 +18184,26 @@ components:
type: string
description: The review decision justification.
nullable: true
+ principal:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ principalLink:
+ type: string
+ nullable: true
recommendation:
type: string
description: 'A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.'
nullable: true
+ resource:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource'
+ resourceLink:
+ type: string
+ nullable: true
reviewedBy:
$ref: '#/components/schemas/microsoft.graph.userIdentity'
reviewedDateTime:
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 DateTime when the review occurred.
+ description: The timestamp when the review occurred.
format: date-time
nullable: true
target:
@@ -17769,7 +18226,7 @@ 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: DateTime when review series was created.
+ description: Timestamp when review series was created.
format: date-time
nullable: true
descriptionForAdmins:
@@ -17789,7 +18246,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: DateTime when review series was last modified.
+ description: Timestamp when review series was last modified.
format: date-time
nullable: true
reviewers:
@@ -17849,6 +18306,28 @@ components:
- mobileOther
- mobileUnknown
type: string
+ microsoft.graph.chromeOSDeviceProperty:
+ title: chromeOSDeviceProperty
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name of the property
+ nullable: true
+ updatable:
+ type: boolean
+ description: Whether this property is updatable
+ value:
+ type: string
+ description: Value of the property
+ nullable: true
+ valueType:
+ type: string
+ description: Type of the value
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents a property of the ChromeOS device.
microsoft.graph.complianceState:
title: complianceState
enum:
@@ -18140,11 +18619,12 @@ components:
- androidEnterprise
- windows10x
- androidnGMS
- - cloudPC
+ - chromeOS
- linux
- blackberry
- palm
- unknown
+ - cloudPC
type: string
microsoft.graph.deviceManagementExchangeAccessState:
title: deviceManagementExchangeAccessState
@@ -18982,7 +19462,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -19043,7 +19523,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -19055,7 +19535,7 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
creationSource:
@@ -19063,7 +19543,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -19104,7 +19584,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -19191,7 +19671,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -19225,7 +19705,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -20053,6 +20533,7 @@ components:
properties:
conferenceId:
type: string
+ description: The conference id of the online meeting.
nullable: true
dialinUrl:
type: string
@@ -20150,6 +20631,18 @@ components:
description: For broadcast meeting only.
additionalProperties:
type: object
+ microsoft.graph.meetingAttendanceReport:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: meetingAttendanceReport
+ type: object
+ properties:
+ attendanceRecords:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceRecord'
+ additionalProperties:
+ type: object
microsoft.graph.outOfOfficeSettings:
title: outOfOfficeSettings
type: object
@@ -20197,6 +20690,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
creationDateTime:
@@ -20315,7 +20809,7 @@ components:
creationDateTime:
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 this password was last updated. This property is currently not populated. Read-only. 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'''
+ description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. 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
password:
@@ -20466,11 +20960,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.channelIdentity'
chatId:
type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -20501,7 +20996,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -20530,15 +21025,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -20691,99 +21189,6 @@ components:
- hiddenMembership
- unknownFutureValue
type: string
- microsoft.graph.schedule:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: schedule
- type: object
- properties:
- enabled:
- type: boolean
- description: Indicates whether the schedule is enabled for the team. Required.
- nullable: true
- offerShiftRequestsEnabled:
- type: boolean
- description: Indicates whether offer shift requests are enabled for the schedule.
- nullable: true
- openShiftsEnabled:
- type: boolean
- description: Indicates whether open shifts are enabled for the schedule.
- nullable: true
- provisionStatus:
- $ref: '#/components/schemas/microsoft.graph.operationStatus'
- provisionStatusCode:
- type: string
- description: Additional information about why schedule provisioning failed.
- nullable: true
- swapShiftsRequestsEnabled:
- type: boolean
- description: Indicates whether swap shifts requests are enabled for the schedule.
- nullable: true
- timeClockEnabled:
- type: boolean
- description: Indicates whether time clock is enabled for the schedule.
- nullable: true
- timeClockSettings:
- $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
- timeOffRequestsEnabled:
- type: boolean
- description: Indicates whether time off requests are enabled for the schedule.
- nullable: true
- timeZone:
- type: string
- description: Indicates the time zone of the schedule team using tz database format. Required.
- nullable: true
- workforceIntegrationIds:
- type: array
- items:
- type: string
- nullable: true
- offerShiftRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
- openShiftChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
- openShifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.openShift'
- schedulingGroups:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
- description: The logical grouping of users in the schedule (usually by role).
- shifts:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.shift'
- description: The shifts in the schedule.
- swapShiftsChangeRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
- timeCards:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeCard'
- timeOffReasons:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffReason'
- description: The set of reasons for a time off in the schedule.
- timeOffRequests:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
- timesOff:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.timeOff'
- description: The instances of times off in the schedule.
- additionalProperties:
- type: object
microsoft.graph.channel:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -20912,62 +21317,155 @@ components:
type: object
additionalProperties:
type: object
- microsoft.graph.userScopeTeamsAppInstallation:
+ microsoft.graph.schedule:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
- - title: userScopeTeamsAppInstallation
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: schedule
type: object
properties:
- chat:
- $ref: '#/components/schemas/microsoft.graph.chat'
- additionalProperties:
- type: object
- microsoft.graph.visualProperties:
- title: visualProperties
- type: object
- properties:
- body:
- type: string
- description: The body of a visual user notification. Body is optional.
- nullable: true
- title:
- type: string
- description: The title of a visual user notification. This field is required for visual notification payloads.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.bodyType:
- title: bodyType
- enum:
- - text
- - html
- type: string
- microsoft.graph.recurrencePattern:
- title: recurrencePattern
- type: object
- properties:
- dayOfMonth:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: The day of the month on which the event occurs. Required if type is absoluteMonthly or absoluteYearly.
- format: int32
- daysOfWeek:
- type: array
- items:
- $ref: '#/components/schemas/microsoft.graph.dayOfWeek'
- description: 'A collection of the days of the week on which the event occurs. Possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly.'
- firstDayOfWeek:
- $ref: '#/components/schemas/microsoft.graph.dayOfWeek'
- index:
- $ref: '#/components/schemas/microsoft.graph.weekIndex'
- interval:
- maximum: 2147483647
- minimum: -2147483648
- type: integer
- description: 'The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required.'
- format: int32
- month:
+ enabled:
+ type: boolean
+ description: Indicates whether the schedule is enabled for the team. Required.
+ nullable: true
+ offerShiftRequestsEnabled:
+ type: boolean
+ description: Indicates whether offer shift requests are enabled for the schedule.
+ nullable: true
+ openShiftsEnabled:
+ type: boolean
+ description: Indicates whether open shifts are enabled for the schedule.
+ nullable: true
+ provisionStatus:
+ $ref: '#/components/schemas/microsoft.graph.operationStatus'
+ provisionStatusCode:
+ type: string
+ description: Additional information about why schedule provisioning failed.
+ nullable: true
+ swapShiftsRequestsEnabled:
+ type: boolean
+ description: Indicates whether swap shifts requests are enabled for the schedule.
+ nullable: true
+ timeClockEnabled:
+ type: boolean
+ description: Indicates whether time clock is enabled for the schedule.
+ nullable: true
+ timeClockSettings:
+ $ref: '#/components/schemas/microsoft.graph.timeClockSettings'
+ timeOffRequestsEnabled:
+ type: boolean
+ description: Indicates whether time off requests are enabled for the schedule.
+ nullable: true
+ timeZone:
+ type: string
+ description: Indicates the time zone of the schedule team using tz database format. Required.
+ nullable: true
+ workforceIntegrationIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ offerShiftRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.offerShiftRequest'
+ openShiftChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest'
+ openShifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.openShift'
+ schedulingGroups:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.schedulingGroup'
+ description: The logical grouping of users in the schedule (usually by role).
+ shifts:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.shift'
+ description: The shifts in the schedule.
+ swapShiftsChangeRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
+ timeCards:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeCard'
+ timeOffReasons:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffReason'
+ description: The set of reasons for a time off in the schedule.
+ timeOffRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOffRequest'
+ timesOff:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.timeOff'
+ description: The instances of times off in the schedule.
+ additionalProperties:
+ type: object
+ microsoft.graph.userScopeTeamsAppInstallation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation'
+ - title: userScopeTeamsAppInstallation
+ type: object
+ properties:
+ chat:
+ $ref: '#/components/schemas/microsoft.graph.chat'
+ additionalProperties:
+ type: object
+ microsoft.graph.visualProperties:
+ title: visualProperties
+ type: object
+ properties:
+ body:
+ type: string
+ description: The body of a visual user notification. Body is optional.
+ nullable: true
+ title:
+ type: string
+ description: The title of a visual user notification. This field is required for visual notification payloads.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.bodyType:
+ title: bodyType
+ enum:
+ - text
+ - html
+ type: string
+ microsoft.graph.recurrencePattern:
+ title: recurrencePattern
+ type: object
+ properties:
+ dayOfMonth:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The day of the month on which the event occurs. Required if type is absoluteMonthly or absoluteYearly.
+ format: int32
+ daysOfWeek:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.dayOfWeek'
+ description: 'A collection of the days of the week on which the event occurs. Possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly.'
+ firstDayOfWeek:
+ $ref: '#/components/schemas/microsoft.graph.dayOfWeek'
+ index:
+ $ref: '#/components/schemas/microsoft.graph.weekIndex'
+ interval:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: 'The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required.'
+ format: int32
+ month:
maximum: 2147483647
minimum: -2147483648
type: integer
@@ -21013,6 +21511,7 @@ components:
properties:
languageTag:
type: string
+ description: The language to apply the override.Returned by default. Not nullable.
translationBehavior:
$ref: '#/components/schemas/microsoft.graph.translationBehavior'
additionalProperties:
@@ -21259,7 +21758,7 @@ 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 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''.'
+ description: '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
message:
@@ -21467,7 +21966,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -22006,6 +22505,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.media:
+ title: media
+ type: object
+ properties:
+ isTranscriptionShown:
+ type: boolean
+ nullable: true
+ mediaSource:
+ $ref: '#/components/schemas/microsoft.graph.mediaSource'
+ additionalProperties:
+ type: object
microsoft.graph.package:
title: package
type: object
@@ -22185,6 +22695,17 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSource:
+ title: driveItemSource
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication'
+ externalId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.specialFolder:
title: specialFolder
type: object
@@ -22345,9 +22866,11 @@ components:
nullable: true
notificationContentType:
type: string
+ description: Desired content-type for MS Graph change notifications for supported resource types. The default content-type is the 'application/json' content-type.
nullable: true
notificationQueryOptions:
type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
nullable: true
notificationUrl:
type: string
@@ -22546,6 +23069,7 @@ components:
properties:
isPicture:
type: boolean
+ description: Specifies whether the display format used for URL columns is an image or a hyperlink.
nullable: true
additionalProperties:
type: object
@@ -22623,9 +23147,11 @@ components:
properties:
allowMultipleValues:
type: boolean
+ description: Specifies whether the column will allow more than one value
nullable: true
showFullyQualifiedName:
type: boolean
+ description: Specifies whether to display the entire term path or only the term label.
nullable: true
additionalProperties:
type: object
@@ -22695,13 +23221,16 @@ components:
properties:
defaultLanguage:
type: string
+ description: Default BCP 47 language tag for the description.
nullable: true
descriptions:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.displayNameLocalization'
+ description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails.
formula:
type: string
+ description: 'The formula to validate column value. For examples, see Examples of common formulas in lists'
nullable: true
additionalProperties:
type: object
@@ -22713,18 +23242,23 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
+ description: Content types allowed in document set.
defaultContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.documentSetContent'
+ description: Default contents of document set.
propagateWelcomePageChanges:
type: boolean
+ description: Specifies whether to push welcome page changes to inherited content types.
nullable: true
shouldPrefixNameToFile:
type: boolean
+ description: Add the name of the Document Set to each file name.
nullable: true
welcomePageUrl:
type: string
+ description: Welcome page absolute URL.
nullable: true
sharedColumns:
type: array
@@ -22744,9 +23278,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.contentTypeInfo'
fileName:
type: string
+ description: Name of the file in resource folder that should be added as a default content or a template in the document set
nullable: true
folderName:
type: string
+ description: Folder name in which the file will be placed when a new document set is created in the library.
nullable: true
additionalProperties:
type: object
@@ -22855,6 +23391,84 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.termStore.group:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: group
+ type: object
+ properties:
+ 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: Date and time of group creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ displayName:
+ type: string
+ description: Name of group.
+ nullable: true
+ parentSiteId:
+ type: string
+ description: Id of the parent site of this group.
+ nullable: true
+ scope:
+ $ref: '#/components/schemas/microsoft.graph.termStore.termGroupScope'
+ sets:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ description: 'All sets under the group in a term [store].'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.set:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: set
+ type: object
+ properties:
+ 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: Date and time of set creation. Read-only.
+ format: date-time
+ nullable: true
+ description:
+ type: string
+ description: Description giving details on the term usage.
+ nullable: true
+ localizedNames:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedName'
+ description: Name of the set for each languageTag.
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Custom properties for the set.
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: 'Children terms of set in term [store].'
+ parentGroup:
+ $ref: '#/components/schemas/microsoft.graph.termStore.group'
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: Indicates which terms have been pinned or reused directly under the set.
+ terms:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: All the terms under the set.
+ additionalProperties:
+ type: object
microsoft.graph.request:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -22899,6 +23513,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.accessReviewInstanceDecisionItemResource:
+ title: accessReviewInstanceDecisionItemResource
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Display name of the resource
+ nullable: true
+ id:
+ type: string
+ description: Resource ID
+ nullable: true
+ type:
+ type: string
+ description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewInstanceDecisionItemTarget:
title: accessReviewInstanceDecisionItemTarget
type: object
@@ -22910,10 +23542,18 @@ components:
- title: accessReviewReviewerScope
type: object
properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
queryRoot:
type: string
description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
additionalProperties:
type: object
microsoft.graph.accessReviewScheduleSettings:
@@ -23663,7 +24303,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -23731,7 +24371,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -24071,6 +24711,30 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.attendanceRecord:
+ title: attendanceRecord
+ type: object
+ properties:
+ attendanceIntervals:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.attendanceInterval'
+ emailAddress:
+ type: string
+ nullable: true
+ identity:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ role:
+ type: string
+ nullable: true
+ totalAttendanceInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.attestationLevel:
title: attestationLevel
enum:
@@ -24141,6 +24805,8 @@ components:
- title: teamsAppDefinition
type: object
properties:
+ allowedInstallationScopes:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppInstallationScopes'
azureADAppId:
type: string
description: The WebApplicationInfo.id from the Teams App manifest.
@@ -24149,6 +24815,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
description:
type: string
+ description: Verbose description of the application.
nullable: true
displayName:
type: string
@@ -24174,6 +24841,10 @@ components:
nullable: true
bot:
$ref: '#/components/schemas/microsoft.graph.teamworkBot'
+ colorIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
+ outlineIcon:
+ $ref: '#/components/schemas/microsoft.graph.teamsAppIcon'
additionalProperties:
type: object
microsoft.graph.chatMessageAttachment:
@@ -24212,9 +24883,11 @@ components:
properties:
channelId:
type: string
+ description: The identity of the channel in which the message was posted.
nullable: true
teamId:
type: string
+ description: The identity of the team in which the message was posted.
nullable: true
additionalProperties:
type: object
@@ -24276,7 +24949,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -24287,19 +24960,9 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
- properties:
- contentBytes:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the bytes of the payload. These are represented as a base64Encoded string.'
- format: base64url
- nullable: true
- contentType:
- type: string
- description: 'Write-only. When posting new chat message hosted content, represents the type of content, such as image/png.'
- nullable: true
additionalProperties:
type: object
microsoft.graph.teamsTabConfiguration:
@@ -24331,12 +24994,96 @@ components:
- moderate
- unknownFutureValue
type: string
- microsoft.graph.operationStatus:
- title: operationStatus
+ microsoft.graph.channelMembershipType:
+ title: channelMembershipType
enum:
- - NotStarted
- - Running
- - Completed
+ - standard
+ - private
+ - unknownFutureValue
+ - shared
+ type: string
+ microsoft.graph.channelModerationSettings:
+ title: channelModerationSettings
+ type: object
+ properties:
+ allowNewMessageFromBots:
+ type: boolean
+ description: Indicates whether bots are allowed to post messages.
+ nullable: true
+ allowNewMessageFromConnectors:
+ type: boolean
+ description: Indicates whether connectors are allowed to post messages.
+ nullable: true
+ replyRestriction:
+ $ref: '#/components/schemas/microsoft.graph.replyRestriction'
+ userNewMessageRestriction:
+ $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
+ additionalProperties:
+ type: object
+ microsoft.graph.operationError:
+ title: operationError
+ type: object
+ properties:
+ code:
+ type: string
+ description: Operation error code.
+ nullable: true
+ message:
+ type: string
+ description: Operation error message.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsAsyncOperationType:
+ title: teamsAsyncOperationType
+ enum:
+ - invalid
+ - cloneTeam
+ - archiveTeam
+ - unarchiveTeam
+ - createTeam
+ - unknownFutureValue
+ - teamifyGroup
+ - createChannel
+ type: string
+ microsoft.graph.teamsAsyncOperationStatus:
+ title: teamsAsyncOperationStatus
+ enum:
+ - invalid
+ - notStarted
+ - inProgress
+ - succeeded
+ - failed
+ - unknownFutureValue
+ type: string
+ microsoft.graph.teamworkTagType:
+ title: teamworkTagType
+ enum:
+ - standard
+ type: string
+ microsoft.graph.teamworkTagMember:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkTagMember
+ type: object
+ properties:
+ displayName:
+ type: string
+ nullable: true
+ tenantId:
+ type: string
+ nullable: true
+ userId:
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.operationStatus:
+ title: operationStatus
+ enum:
+ - NotStarted
+ - Running
+ - Completed
- Failed
type: string
microsoft.graph.timeClockSettings:
@@ -24356,7 +25103,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -24515,13 +25262,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -24549,90 +25296,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.channelMembershipType:
- title: channelMembershipType
- enum:
- - standard
- - private
- - unknownFutureValue
- - shared
- type: string
- microsoft.graph.channelModerationSettings:
- title: channelModerationSettings
- type: object
- properties:
- allowNewMessageFromBots:
- type: boolean
- description: Indicates whether bots are allowed to post messages.
- nullable: true
- allowNewMessageFromConnectors:
- type: boolean
- description: Indicates whether connectors are allowed to post messages.
- nullable: true
- replyRestriction:
- $ref: '#/components/schemas/microsoft.graph.replyRestriction'
- userNewMessageRestriction:
- $ref: '#/components/schemas/microsoft.graph.userNewMessageRestriction'
- additionalProperties:
- type: object
- microsoft.graph.operationError:
- title: operationError
- type: object
- properties:
- code:
- type: string
- description: Operation error code.
- nullable: true
- message:
- type: string
- description: Operation error message.
- nullable: true
- additionalProperties:
- type: object
- microsoft.graph.teamsAsyncOperationType:
- title: teamsAsyncOperationType
- enum:
- - invalid
- - cloneTeam
- - archiveTeam
- - unarchiveTeam
- - createTeam
- - unknownFutureValue
- - teamifyGroup
- - createChannel
- type: string
- microsoft.graph.teamsAsyncOperationStatus:
- title: teamsAsyncOperationStatus
- enum:
- - invalid
- - notStarted
- - inProgress
- - succeeded
- - failed
- - unknownFutureValue
- type: string
- microsoft.graph.teamworkTagType:
- title: teamworkTagType
- enum:
- - standard
- type: string
- microsoft.graph.teamworkTagMember:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamworkTagMember
- type: object
- properties:
- displayName:
- type: string
- nullable: true
- tenantId:
- type: string
- nullable: true
- userId:
- type: string
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.weekIndex:
title: weekIndex
enum:
@@ -24933,6 +25596,14 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.mediaSource:
+ title: mediaSource
+ type: object
+ properties:
+ contentCategory:
+ $ref: '#/components/schemas/microsoft.graph.mediaSourceContentCategory'
+ additionalProperties:
+ type: object
microsoft.graph.pendingContentUpdate:
title: pendingContentUpdate
type: object
@@ -24945,6 +25616,18 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveItemSourceApplication:
+ title: driveItemSourceApplication
+ enum:
+ - teams
+ - yammer
+ - sharePoint
+ - oneDrive
+ - stream
+ - powerPoint
+ - office
+ - unknownFutureValue
+ type: string
microsoft.graph.workbookApplication:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -25253,6 +25936,104 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.termGroupScope:
+ title: termGroupScope
+ enum:
+ - global
+ - system
+ - siteCollection
+ type: string
+ microsoft.graph.termStore.localizedName:
+ title: localizedName
+ type: object
+ properties:
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name in the localized language.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValue:
+ title: keyValue
+ type: object
+ properties:
+ key:
+ type: string
+ description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.'
+ nullable: true
+ value:
+ type: string
+ description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.term:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: term
+ type: object
+ properties:
+ 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: Date and time of term creation. Read-only
+ format: date-time
+ nullable: true
+ descriptions:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedDescription'
+ description: Description about term that is dependent on the languageTag
+ labels:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel'
+ description: Label metadata for a term
+ 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: Last date and time of term modification. Read-only
+ format: date-time
+ nullable: true
+ properties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValue'
+ description: Collection of properties on the term
+ children:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ description: Children of current term
+ relations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relation'
+ description: To indicate which terms are related to the current term as either pinned or reused
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relation:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: relation
+ type: object
+ properties:
+ relationship:
+ $ref: '#/components/schemas/microsoft.graph.termStore.relationType'
+ fromTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ set:
+ $ref: '#/components/schemas/microsoft.graph.termStore.set'
+ toTerm:
+ $ref: '#/components/schemas/microsoft.graph.termStore.term'
+ additionalProperties:
+ type: object
microsoft.graph.accessReviewApplyAction:
title: accessReviewApplyAction
type: object
@@ -25742,6 +26523,28 @@ components:
- unknownFutureValue
- producer
type: string
+ microsoft.graph.attendanceInterval:
+ title: attendanceInterval
+ type: object
+ properties:
+ durationInSeconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ format: int32
+ nullable: true
+ joinDateTime:
+ 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
+ format: date-time
+ nullable: true
+ leaveDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamsAppDistributionMethod:
title: teamsAppDistributionMethod
enum:
@@ -25750,6 +26553,14 @@ components:
- sideloaded
- unknownFutureValue
type: string
+ microsoft.graph.teamsAppInstallationScopes:
+ title: teamsAppInstallationScopes
+ enum:
+ - team
+ - groupChat
+ - personal
+ - unknownFutureValue
+ type: string
microsoft.graph.teamsAppPublishingState:
title: teamsAppPublishingState
enum:
@@ -25765,6 +26576,19 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.teamsAppIcon:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsAppIcon
+ type: object
+ properties:
+ webUrl:
+ type: string
+ nullable: true
+ hostedContent:
+ $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ additionalProperties:
+ type: object
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -25808,6 +26632,38 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.replyRestriction:
+ title: replyRestriction
+ enum:
+ - everyone
+ - authorAndModerators
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userNewMessageRestriction:
+ title: userNewMessageRestriction
+ enum:
+ - everyone
+ - everyoneExceptGuests
+ - moderators
+ - unknownFutureValue
+ type: string
microsoft.graph.scheduleChangeRequest:
allOf:
- $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity'
@@ -25975,19 +26831,13 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.replyRestriction:
- title: replyRestriction
+ microsoft.graph.mediaSourceContentCategory:
+ title: mediaSourceContentCategory
enum:
- - everyone
- - authorAndModerators
- - unknownFutureValue
- type: string
- microsoft.graph.userNewMessageRestriction:
- title: userNewMessageRestriction
- enum:
- - everyone
- - everyoneExceptGuests
- - moderators
+ - meeting
+ - liveStream
+ - presentation
+ - screenRecording
- unknownFutureValue
type: string
microsoft.graph.workbookCommentReply:
@@ -26163,6 +27013,44 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.termStore.localizedDescription:
+ title: localizedDescription
+ type: object
+ properties:
+ description:
+ type: string
+ description: The description in the localized language.
+ nullable: true
+ languageTag:
+ type: string
+ description: The language tag for the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.localizedLabel:
+ title: localizedLabel
+ type: object
+ properties:
+ isDefault:
+ type: boolean
+ description: Indicates whether the label is the default label.
+ nullable: true
+ languageTag:
+ type: string
+ description: The anguage tag for the label.
+ nullable: true
+ name:
+ type: string
+ description: The name of the label.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.termStore.relationType:
+ title: relationType
+ enum:
+ - pin
+ - reuse
+ type: string
microsoft.graph.settingSourceType:
title: settingSourceType
enum:
@@ -26243,7 +27131,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -26253,7 +27141,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
diff --git a/openApiDocs/v1.0/Applications.yml b/openApiDocs/v1.0/Applications.yml
index 87681f78298..8879b926a4f 100644
--- a/openApiDocs/v1.0/Applications.yml
+++ b/openApiDocs/v1.0/Applications.yml
@@ -6586,7 +6586,7 @@ 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 application was registered. Read-only.
+ description: 'The date and time the application was registered. The DateTimeOffset 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. Read-only.'
format: date-time
nullable: true
description:
@@ -6598,7 +6598,7 @@ components:
nullable: true
groupMembershipClaims:
type: string
- description: 'Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.'
+ description: 'Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of).'
nullable: true
identifierUris:
type: array
@@ -6625,6 +6625,7 @@ components:
format: base64url
notes:
type: string
+ description: Notes relevant for the management of the application.
nullable: true
oauth2RequirePostResponse:
type: boolean
@@ -6650,7 +6651,7 @@ components:
description: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable.
signInAudience:
type: string
- description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.'
+ description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below.'
nullable: true
spa:
$ref: '#/components/schemas/microsoft.graph.spaApplication'
@@ -6761,7 +6762,7 @@ components:
endDateTime:
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 at which the credential expires.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'''
+ description: 'The date and time at which the credential expires.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
key:
@@ -6778,7 +6779,7 @@ components:
startDateTime:
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 at which the credential becomes valid.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'''
+ description: 'The date and time at which the credential becomes valid.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
type:
@@ -6807,7 +6808,7 @@ components:
endDateTime:
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 at which the password expires represented 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''. Optional.'
+ description: 'The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional.'
format: date-time
nullable: true
hint:
@@ -6827,7 +6828,7 @@ components:
startDateTime:
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 at which the password becomes valid. 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''. Optional.'
+ description: 'The date and time at which the password becomes valid. 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. Optional.'
format: date-time
nullable: true
additionalProperties:
@@ -6913,11 +6914,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -6927,16 +6929,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -7069,7 +7071,7 @@ components:
nullable: true
signInAudience:
type: string
- description: Specifies what Microsoft accounts are supported for the associated application. Read-only.
+ description: 'Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.'
nullable: true
tags:
type: array
@@ -7316,7 +7318,7 @@ components:
nullable: true
value:
type: string
- description: 'Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed.'
+ description: 'Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with ..'
nullable: true
additionalProperties:
type: object
@@ -7508,7 +7510,7 @@ components:
nullable: true
value:
type: string
- description: 'Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed.'
+ description: 'Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & '' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with ..'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/v1.0/Calendar.yml b/openApiDocs/v1.0/Calendar.yml
index 1d786fc4f7b..a7ff6e5bd8d 100644
--- a/openApiDocs/v1.0/Calendar.yml
+++ b/openApiDocs/v1.0/Calendar.yml
@@ -39466,15 +39466,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -39486,11 +39486,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -39643,7 +39643,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -39734,7 +39734,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 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'''
+ description: '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
name:
@@ -39905,13 +39905,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -40050,7 +40050,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
diff --git a/openApiDocs/v1.0/ChangeNotifications.yml b/openApiDocs/v1.0/ChangeNotifications.yml
index 2a0d72d3a1f..07f5f6e3258 100644
--- a/openApiDocs/v1.0/ChangeNotifications.yml
+++ b/openApiDocs/v1.0/ChangeNotifications.yml
@@ -50,6 +50,8 @@ paths:
- latestSupportedTlsVersion desc
- lifecycleNotificationUrl
- lifecycleNotificationUrl desc
+ - notificationQueryOptions
+ - notificationQueryOptions desc
- notificationUrl
- notificationUrl desc
- resource
@@ -76,6 +78,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -171,6 +174,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -294,6 +298,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
diff --git a/openApiDocs/v1.0/CloudCommunications.yml b/openApiDocs/v1.0/CloudCommunications.yml
index 6859081d6f8..3fbeea0a0ee 100644
--- a/openApiDocs/v1.0/CloudCommunications.yml
+++ b/openApiDocs/v1.0/CloudCommunications.yml
@@ -3198,7 +3198,7 @@ components:
endDateTime:
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: 'UTC time when the last user left the call. The DateTimeOffset 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'''
+ description: 'UTC time when the last user left the call. The DateTimeOffset 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
joinWebUrl:
type: string
@@ -3207,7 +3207,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: 'UTC time when the call record was created. The DatetimeOffset 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'''
+ description: 'UTC time when the call record was created. The DatetimeOffset 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
modalities:
type: array
@@ -3224,7 +3224,7 @@ components:
startDateTime:
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: 'UTC time when the first user joined the call. The DatetimeOffset 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'''
+ description: 'UTC time when the first user joined the call. The DatetimeOffset 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
type:
$ref: '#/components/schemas/microsoft.graph.callRecords.callType'
@@ -3252,7 +3252,7 @@ components:
endDateTime:
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: 'UTC time when the last user left the session. The DateTimeOffset 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'''
+ description: 'UTC time when the last user left the session. The DateTimeOffset 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
failureInfo:
$ref: '#/components/schemas/microsoft.graph.callRecords.failureInfo'
@@ -3264,7 +3264,7 @@ components:
startDateTime:
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: 'UTC fime when the first user joined the session. The DateTimeOffset 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'''
+ description: 'UTC fime when the first user joined the session. The DateTimeOffset 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
segments:
type: array
@@ -3286,7 +3286,7 @@ components:
endDateTime:
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: 'UTC time when the segment ended. The DateTimeOffset 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'''
+ description: 'UTC time when the segment ended. The DateTimeOffset 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
failureInfo:
$ref: '#/components/schemas/microsoft.graph.callRecords.failureInfo'
@@ -3298,7 +3298,7 @@ components:
startDateTime:
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: 'UTC time when the segment started. The DateTimeOffset 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'''
+ description: 'UTC time when the segment started. The DateTimeOffset 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
additionalProperties:
type: object
@@ -4482,7 +4482,7 @@ components:
endDateTime:
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: 'UTC time when the stream ended. The DateTimeOffset 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'''
+ description: 'UTC time when the stream ended. The DateTimeOffset 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
lowFrameRateRatio:
@@ -4536,7 +4536,7 @@ components:
startDateTime:
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: 'UTC time when the stream started. The DateTimeOffset 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'''
+ description: 'UTC time when the stream started. The DateTimeOffset 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
streamDirection:
diff --git a/openApiDocs/v1.0/DeviceManagement.Enrolment.yml b/openApiDocs/v1.0/DeviceManagement.Enrolment.yml
index f9a20b730c4..07b19404816 100644
--- a/openApiDocs/v1.0/DeviceManagement.Enrolment.yml
+++ b/openApiDocs/v1.0/DeviceManagement.Enrolment.yml
@@ -543,6 +543,63 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /roleManagement:
+ get:
+ tags:
+ - roleManagement.roleManagement
+ summary: Get roleManagement
+ operationId: roleManagement.roleManagement_GetRoleManagement
+ parameters:
+ - 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:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved entity
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.roleManagement'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - roleManagement.roleManagement
+ summary: Update roleManagement
+ operationId: roleManagement.roleManagement_UpdateRoleManagement
+ requestBody:
+ description: New property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.roleManagement'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
components:
schemas:
microsoft.graph.onPremisesConditionalAccessSettings:
@@ -629,6 +686,11 @@ components:
additionalProperties:
type: object
description: Enrollment Configuration Assignment
+ microsoft.graph.roleManagement:
+ title: roleManagement
+ type: object
+ additionalProperties:
+ type: object
microsoft.graph.entity:
title: entity
type: object
diff --git a/openApiDocs/v1.0/Devices.CloudPrint.yml b/openApiDocs/v1.0/Devices.CloudPrint.yml
index 04eee9f20ed..1fca7f92f55 100644
--- a/openApiDocs/v1.0/Devices.CloudPrint.yml
+++ b/openApiDocs/v1.0/Devices.CloudPrint.yml
@@ -550,6 +550,8 @@ paths:
- hasPhysicalDevice desc
- isShared
- isShared desc
+ - lastSeenDateTime
+ - lastSeenDateTime desc
- registeredDateTime
- registeredDateTime desc
type: string
@@ -574,6 +576,7 @@ paths:
- status
- hasPhysicalDevice
- isShared
+ - lastSeenDateTime
- registeredDateTime
- jobs
- connectors
@@ -676,6 +679,7 @@ paths:
- status
- hasPhysicalDevice
- isShared
+ - lastSeenDateTime
- registeredDateTime
- jobs
- connectors
@@ -3426,6 +3430,7 @@ paths:
- status
- hasPhysicalDevice
- isShared
+ - lastSeenDateTime
- registeredDateTime
- jobs
- connectors
@@ -4481,6 +4486,12 @@ components:
isShared:
type: boolean
description: True if the printer is shared; false otherwise. Read-only.
+ lastSeenDateTime:
+ 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 most recent dateTimeOffset when a printer interacted with Universal Print. Read-only.
+ format: date-time
+ nullable: true
registeredDateTime:
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
@@ -4623,7 +4634,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -4637,7 +4648,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -4669,7 +4680,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -4678,7 +4689,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -4718,7 +4729,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -4739,29 +4750,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -4899,7 +4910,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -4916,7 +4927,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -5000,7 +5011,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -5045,7 +5056,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -5147,12 +5158,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -5657,11 +5668,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -5671,16 +5683,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -5699,18 +5711,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -5749,15 +5766,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -5769,11 +5786,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -5901,7 +5918,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -5988,7 +6005,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -6050,7 +6067,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -6266,6 +6283,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -6335,7 +6358,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -6691,7 +6714,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -6990,7 +7013,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -7003,7 +7026,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -7175,13 +7198,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -7451,7 +7474,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -8159,13 +8182,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -8304,7 +8327,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -8351,7 +8374,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 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'''
+ description: '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
name:
@@ -8395,7 +8418,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -8908,7 +8931,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -8980,7 +9003,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -9014,7 +9037,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -9325,6 +9348,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -10223,7 +10252,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -10235,13 +10264,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -10275,7 +10304,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -10546,6 +10575,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -11741,6 +11771,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -12197,7 +12231,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -12265,7 +12299,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -12326,7 +12360,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -12452,13 +12486,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -12503,10 +12537,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -12537,7 +12577,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -12566,15 +12606,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -13306,7 +13349,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -13314,7 +13357,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 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'''
+ description: '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
additionalProperties:
@@ -13405,18 +13448,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -13448,7 +13491,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -13470,7 +13513,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -13479,13 +13522,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -13549,6 +13592,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -14277,6 +14325,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -14337,7 +14399,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -14348,7 +14410,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -14791,7 +14853,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -14801,7 +14863,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -14851,6 +14913,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Devices.CorporateManagement.yml b/openApiDocs/v1.0/Devices.CorporateManagement.yml
index ce45d8b243a..38fb91608f1 100644
--- a/openApiDocs/v1.0/Devices.CorporateManagement.yml
+++ b/openApiDocs/v1.0/Devices.CorporateManagement.yml
@@ -11608,7 +11608,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
diff --git a/openApiDocs/v1.0/Education.yml b/openApiDocs/v1.0/Education.yml
index 164d1334b56..d5a80fcf1b0 100644
--- a/openApiDocs/v1.0/Education.yml
+++ b/openApiDocs/v1.0/Education.yml
@@ -6064,7 +6064,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -6078,7 +6078,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -6110,7 +6110,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -6119,7 +6119,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -6159,7 +6159,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -6180,29 +6180,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -6533,7 +6533,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -6550,7 +6550,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -6634,7 +6634,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -6679,7 +6679,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -6781,12 +6781,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -7024,7 +7024,7 @@ components:
nullable: true
visibility:
type: string
- description: 'Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.'
+ description: 'Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.'
nullable: true
members:
type: array
@@ -7213,11 +7213,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -7227,16 +7228,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -7255,18 +7256,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -7305,15 +7311,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -7325,11 +7331,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -7457,7 +7463,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -7544,7 +7550,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -7606,7 +7612,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -7822,6 +7828,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -7891,7 +7903,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -8355,7 +8367,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -8654,7 +8666,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -8667,7 +8679,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -8839,13 +8851,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -9115,7 +9127,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -9534,13 +9546,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -9679,7 +9691,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -9726,7 +9738,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 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'''
+ description: '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
name:
@@ -9770,7 +9782,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -10271,7 +10283,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -10343,7 +10355,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -10377,7 +10389,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -10688,6 +10700,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -11554,7 +11572,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -11566,13 +11584,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -11606,7 +11624,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -11877,6 +11895,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -12774,6 +12793,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -13230,7 +13253,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -13298,7 +13321,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -13359,7 +13382,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -13485,13 +13508,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -13536,10 +13559,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -13570,7 +13599,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -13599,15 +13628,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -14339,7 +14371,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -14347,7 +14379,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 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'''
+ description: '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
additionalProperties:
@@ -14438,18 +14470,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -14481,7 +14513,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -14503,7 +14535,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -14512,13 +14544,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -14582,6 +14614,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -15251,6 +15288,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -15311,7 +15362,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -15322,7 +15373,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -15765,7 +15816,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -15775,7 +15826,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -15825,6 +15876,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Files.yml b/openApiDocs/v1.0/Files.yml
index 5a38392938f..cbbad502956 100644
--- a/openApiDocs/v1.0/Files.yml
+++ b/openApiDocs/v1.0/Files.yml
@@ -4008,6 +4008,8 @@ paths:
- latestSupportedTlsVersion desc
- lifecycleNotificationUrl
- lifecycleNotificationUrl desc
+ - notificationQueryOptions
+ - notificationQueryOptions desc
- notificationUrl
- notificationUrl desc
- resource
@@ -4034,6 +4036,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -4144,6 +4147,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -9307,6 +9311,8 @@ paths:
- latestSupportedTlsVersion desc
- lifecycleNotificationUrl
- lifecycleNotificationUrl desc
+ - notificationQueryOptions
+ - notificationQueryOptions desc
- notificationUrl
- notificationUrl desc
- resource
@@ -9333,6 +9339,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -9443,6 +9450,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -12165,6 +12173,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -13475,7 +13487,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -13492,7 +13504,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -13576,7 +13588,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -13621,7 +13633,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -13723,12 +13735,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -14335,7 +14347,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -14369,7 +14381,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -14540,7 +14552,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -14788,11 +14800,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -14802,16 +14815,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -14900,15 +14913,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -14920,11 +14933,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -15079,7 +15092,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -15203,7 +15216,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -15502,7 +15515,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -15515,7 +15528,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -15716,13 +15729,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -15992,7 +16005,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -16251,6 +16264,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -16529,7 +16548,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -16597,7 +16616,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -16847,13 +16866,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -16992,7 +17011,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -17039,7 +17058,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 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'''
+ description: '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
name:
@@ -17699,7 +17718,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -17760,7 +17779,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -17772,13 +17791,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -17812,7 +17831,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -18078,6 +18097,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -18350,6 +18370,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -18413,7 +18439,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -18427,7 +18453,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -18459,7 +18485,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -18468,7 +18494,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -18508,7 +18534,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -18529,29 +18555,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -19831,7 +19857,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -19839,7 +19865,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 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'''
+ description: '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
additionalProperties:
@@ -19930,18 +19956,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -19973,7 +19999,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -19995,7 +20021,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -20004,13 +20030,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -20056,7 +20082,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -20182,13 +20208,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -20233,10 +20259,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -20267,7 +20299,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -20296,15 +20328,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -20358,18 +20393,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -20407,7 +20447,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -20447,7 +20487,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -20638,6 +20678,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -21204,6 +21249,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -21264,7 +21323,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -21275,7 +21334,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -21345,7 +21404,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -21551,7 +21610,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -21561,7 +21620,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -21611,6 +21670,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookChartGridlinesFormat:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Groups.yml b/openApiDocs/v1.0/Groups.yml
index 838c49d9ba9..b24f5dcf156 100644
--- a/openApiDocs/v1.0/Groups.yml
+++ b/openApiDocs/v1.0/Groups.yml
@@ -20604,7 +20604,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -20618,7 +20618,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -20650,7 +20650,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -20659,7 +20659,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -20699,7 +20699,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -20720,29 +20720,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -21064,7 +21064,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -21151,7 +21151,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -21191,7 +21191,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -21245,7 +21245,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -21289,7 +21289,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 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'''
+ description: '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
name:
@@ -21364,18 +21364,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -21390,7 +21395,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -21492,7 +21497,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -21616,11 +21621,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -21630,16 +21636,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -21684,15 +21690,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -21704,11 +21710,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -21912,6 +21918,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -22077,13 +22089,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -22209,7 +22221,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -22883,7 +22895,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -22967,7 +22979,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -23278,6 +23290,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -23728,7 +23746,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -23745,7 +23763,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -23829,7 +23847,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -23874,7 +23892,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -23976,12 +23994,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -24765,6 +24783,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -25241,7 +25263,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -25253,13 +25275,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -25293,7 +25315,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -25326,7 +25348,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -25340,7 +25362,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -25393,7 +25415,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -25519,13 +25541,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -25570,10 +25592,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -25604,7 +25632,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -25633,15 +25661,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -25828,7 +25859,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -26184,7 +26215,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -26483,7 +26514,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -26496,7 +26527,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -26668,13 +26699,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -26944,7 +26975,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -27744,7 +27775,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -27752,7 +27783,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 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'''
+ description: '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
additionalProperties:
@@ -27860,6 +27891,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -27920,7 +27965,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -27931,7 +27976,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -28893,6 +28938,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -29240,7 +29286,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -29250,7 +29296,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -29300,6 +29346,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.externalAudienceScope:
title: externalAudienceScope
enum:
@@ -29880,18 +29943,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -29923,7 +29986,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -29945,7 +30008,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -29954,13 +30017,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -30024,6 +30087,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
diff --git a/openApiDocs/v1.0/Identity.DirectoryManagement.yml b/openApiDocs/v1.0/Identity.DirectoryManagement.yml
index 3e292008bde..a610546ea1e 100644
--- a/openApiDocs/v1.0/Identity.DirectoryManagement.yml
+++ b/openApiDocs/v1.0/Identity.DirectoryManagement.yml
@@ -8363,7 +8363,7 @@ components:
onPremisesLastSyncDateTime:
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 when this organizational contact was last synchronized from on-premises AD. 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''.'
+ description: 'Date and time when this organizational contact was last synchronized from on-premises AD. 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
onPremisesProvisioningErrors:
@@ -8458,7 +8458,7 @@ components:
properties:
contractType:
type: string
- description: 'Type of contract.Possible values are: SyndicationPartner - Partner that exclusively resells and manages O365 and Intune for this customer. They resell and support their customers. BreadthPartner - Partner has the ability to provide administrative support for this customer. However, the partner is not allowed to resell to the customer.ResellerPartner - Partner that is similar to a syndication partner, except that the partner doesn’t have exclusive access to a tenant. In the syndication case, the customer cannot buy additional direct subscriptions from Microsoft or from other partners.'
+ description: 'Type of contract. Possible values are: SyndicationPartner, BreadthPartner, ResellerPartner. See more in the table below.'
nullable: true
customerId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -8495,18 +8495,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -8538,7 +8538,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -8560,7 +8560,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -8569,13 +8569,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -8638,7 +8638,7 @@ components:
nullable: true
visibility:
type: string
- description: 'Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.'
+ description: 'Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.'
nullable: true
members:
type: array
@@ -8730,7 +8730,7 @@ components:
properties:
authenticationType:
type: string
- description: Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication.Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This propert is read-only and is not nullable.
+ description: Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This property is read-only and is not nullable.
availabilityStatus:
type: string
description: 'This property is always null except when the verify action is used. When the verify action is used, a domain entity is returned in the response. The availabilityStatus property of the domain entity in the response is either AvailableImmediately or EmailVerifiedDomainTakeoverScheduled.'
@@ -8740,16 +8740,16 @@ components:
description: 'The value of the property is false if the DNS record management of the domain has been delegated to Microsoft 365. Otherwise, the value is true. Not nullable'
isDefault:
type: boolean
- description: True if this is the default domain that is used for user creation. There is only one default domain per company. Not nullable
+ description: true if this is the default domain that is used for user creation. There is only one default domain per company. Not nullable
isInitial:
type: boolean
- description: True if this is the initial domain created by Microsoft Online Services (companyname.onmicrosoft.com). There is only one initial domain per company. Not nullable
+ description: true if this is the initial domain created by Microsoft Online Services (companyname.onmicrosoft.com). There is only one initial domain per company. Not nullable
isRoot:
type: boolean
- description: 'True if the domain is a verified root domain. Otherwise, false if the domain is a subdomain or unverified. Not nullable'
+ description: 'true if the domain is a verified root domain. Otherwise, false if the domain is a subdomain or unverified. Not nullable'
isVerified:
type: boolean
- description: True if the domain has completed domain ownership verification. Not nullable
+ description: true if the domain has completed domain ownership verification. Not nullable
manufacturer:
type: string
nullable: true
@@ -8776,7 +8776,7 @@ components:
type: array
items:
type: string
- description: 'The capabilities assigned to the domain.Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune The values which you can add/remove using Graph API include: Email, OfficeCommunicationsOnline, YammerNot nullable'
+ description: 'The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline,SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values which you can add/remove using Graph API include: Email, OfficeCommunicationsOnline, Yammer. Not nullable'
domainNameReferences:
type: array
items:
@@ -8786,12 +8786,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.domainDnsRecord'
- description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services.Read-only, Nullable'
+ description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services. Read-only, Nullable'
verificationDnsRecords:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.domainDnsRecord'
- description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD.Read-only, Nullable'
+ description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD. Read-only, Nullable'
additionalProperties:
type: object
microsoft.graph.domainDnsRecord:
@@ -8836,7 +8836,7 @@ components:
type: array
items:
type: string
- description: 'Telephone number for the organization. Note: Although this is a string collection, only one number can be set for this property.'
+ description: 'Telephone number for the organization. Although this is a string collection, only one number can be set for this property.'
city:
type: string
description: City name of the address for the organization.
@@ -8852,7 +8852,7 @@ 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: 'Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization 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 would look like this: ''2014-01-01T00:00:00Z''. Read-only.'
+ description: 'Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization 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. Read-only.'
format: date-time
nullable: true
displayName:
@@ -8867,12 +8867,12 @@ components:
onPremisesLastSyncDateTime:
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 time and date at which the tenant was last synced with the on-premise directory. 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''.'
+ description: 'The time and date at which the tenant was last synced with the on-premise directory. 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
onPremisesSyncEnabled:
type: boolean
- description: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default).
+ description: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; Nullable. null if this object has never been synced from an on-premises directory (default).
nullable: true
postalCode:
type: string
@@ -8880,7 +8880,7 @@ components:
nullable: true
preferredLanguage:
type: string
- description: The preferred language for the organization. Should follow ISO 639-1 Code; for example 'en'.
+ description: The preferred language for the organization. Should follow ISO 639-1 Code; for example en.
nullable: true
privacyProfile:
$ref: '#/components/schemas/microsoft.graph.privacyProfile'
@@ -9131,7 +9131,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
diff --git a/openApiDocs/v1.0/Identity.Governance.yml b/openApiDocs/v1.0/Identity.Governance.yml
index 3b86fb0d342..d17d1d2d6bd 100644
--- a/openApiDocs/v1.0/Identity.Governance.yml
+++ b/openApiDocs/v1.0/Identity.Governance.yml
@@ -1749,6 +1749,63 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.appConsent.appConsentRequests.userConsentRequests_filterByCurrentUser
+ parameters:
+ - name: appConsentRequest-id
+ in: path
+ description: 'key: id of appConsentRequest'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: appConsentRequest
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on})':
+ get:
+ tags:
+ - identityGovernance.Functions
+ summary: Invoke function filterByCurrentUser
+ operationId: identityGovernance.appConsent.appConsentRequests_filterByCurrentUser
+ parameters:
+ - name: on
+ in: path
+ description: 'Usage: on={on}'
+ required: true
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions'
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequest'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
'/users/{user-id}/agreementAcceptances':
get:
tags:
@@ -2057,13 +2114,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -2117,6 +2174,51 @@ components:
type: object
additionalProperties:
type: object
+ microsoft.graph.consentRequestFilterByCurrentUserOptions:
+ title: consentRequestFilterByCurrentUserOptions
+ enum:
+ - reviewer
+ - unknownFutureValue
+ type: string
+ microsoft.graph.userConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.request'
+ - title: userConsentRequest
+ type: object
+ properties:
+ reason:
+ type: string
+ description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.
+ nullable: true
+ approval:
+ $ref: '#/components/schemas/microsoft.graph.approval'
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: appConsentRequest
+ type: object
+ properties:
+ appDisplayName:
+ type: string
+ description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
+ nullable: true
+ appId:
+ type: string
+ description: The identifier of the application. Required. Supports $filter (eq only) and $orderby.
+ pendingScopes:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope'
+ description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required.
+ userConsentRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.userConsentRequest'
+ description: A list of pending user consent requests.
+ additionalProperties:
+ type: object
microsoft.graph.entity:
title: entity
type: object
@@ -2139,7 +2241,7 @@ components:
startDateTime:
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 DateTime when the agreement is set to expire for all users. 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''.'
+ description: 'The DateTime when the agreement is set to expire for all users. 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
additionalProperties:
@@ -2181,6 +2283,57 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.request:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: request
+ type: object
+ properties:
+ approvalId:
+ type: string
+ nullable: true
+ 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
+ format: date-time
+ 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
+ format: date-time
+ nullable: true
+ customData:
+ type: string
+ nullable: true
+ status:
+ type: string
+ additionalProperties:
+ type: object
+ microsoft.graph.approval:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: approval
+ type: object
+ properties:
+ stages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.approvalStage'
+ description: 'Used for the approvalStages property of approval settings in the requestApprovalSettings property of an access package assignment policy. Specifies the primary, fallback, and escalation approvers of each stage.'
+ additionalProperties:
+ type: object
+ microsoft.graph.appConsentRequestScope:
+ title: appConsentRequestScope
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: The name of the scope.
+ nullable: true
+ additionalProperties:
+ type: object
odata.error:
required:
- error
@@ -2200,6 +2353,54 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.identitySet:
+ title: identitySet
+ type: object
+ properties:
+ application:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ device:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ user:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ additionalProperties:
+ type: object
+ microsoft.graph.approvalStage:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: approvalStage
+ type: object
+ properties:
+ assignedToMe:
+ type: boolean
+ description: Indicates whether the stage is assigned to the calling user to review. Read-only.
+ nullable: true
+ displayName:
+ type: string
+ description: The label provided by the policy creator to identify an approval stage. Read-only.
+ nullable: true
+ justification:
+ type: string
+ description: The justification associated with the approval stage decision.
+ nullable: true
+ reviewedBy:
+ $ref: '#/components/schemas/microsoft.graph.identity'
+ reviewedDateTime:
+ 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 a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
+ format: date-time
+ nullable: true
+ reviewResult:
+ type: string
+ description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.'
+ nullable: true
+ status:
+ type: string
+ description: 'The stage status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.'
+ nullable: true
+ additionalProperties:
+ type: object
odata.error.main:
required:
- code
@@ -2223,6 +2424,20 @@ components:
description: The structure of this object is service-specific
additionalProperties:
type: object
+ microsoft.graph.identity:
+ title: identity
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may 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: Unique identifier for the identity.
+ nullable: true
+ additionalProperties:
+ type: object
odata.error.detail:
required:
- code
diff --git a/openApiDocs/v1.0/Identity.SignIns.yml b/openApiDocs/v1.0/Identity.SignIns.yml
index 7bde61b8a31..ebf9d8cc4cf 100644
--- a/openApiDocs/v1.0/Identity.SignIns.yml
+++ b/openApiDocs/v1.0/Identity.SignIns.yml
@@ -2784,6 +2784,8 @@ paths:
- permissionGrantPolicies
- tokenIssuancePolicies
- tokenLifetimePolicies
+ - featureRolloutPolicies
+ - adminConsentRequestPolicy
- conditionalAccessPolicies
- identitySecurityDefaultsEnforcementPolicy
type: string
@@ -2806,6 +2808,8 @@ paths:
- permissionGrantPolicies
- tokenIssuancePolicies
- tokenLifetimePolicies
+ - featureRolloutPolicies
+ - adminConsentRequestPolicy
- conditionalAccessPolicies
- identitySecurityDefaultsEnforcementPolicy
type: string
@@ -2833,6 +2837,10 @@ paths:
operationId: policies.ListTokenIssuancePolicies
tokenLifetimePolicies:
operationId: policies.ListTokenLifetimePolicies
+ featureRolloutPolicies:
+ operationId: policies.ListFeatureRolloutPolicies
+ adminConsentRequestPolicy:
+ operationId: policies.GetAdminConsentRequestPolicy
conditionalAccessPolicies:
operationId: policies.ListConditionalAccessPolicies
identitySecurityDefaultsEnforcementPolicy:
@@ -3079,6 +3087,88 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /policies/adminConsentRequestPolicy:
+ get:
+ tags:
+ - policies.adminConsentRequestPolicy
+ summary: Get adminConsentRequestPolicy from policies
+ operationId: policies_GetAdminConsentRequestPolicy
+ parameters:
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - isEnabled
+ - notifyReviewers
+ - remindersEnabled
+ - requestDurationInDays
+ - reviewers
+ - version
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.adminConsentRequestPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - policies.adminConsentRequestPolicy
+ summary: Update the navigation property adminConsentRequestPolicy in policies
+ operationId: policies_UpdateAdminConsentRequestPolicy
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.adminConsentRequestPolicy'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - policies.adminConsentRequestPolicy
+ summary: Delete navigation property adminConsentRequestPolicy for policies
+ operationId: policies_DeleteAdminConsentRequestPolicy
+ parameters:
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/policies/authenticationMethodsPolicy:
get:
tags:
@@ -3296,11 +3386,456 @@ paths:
items:
enum:
- id
- - deletedDateTime
+ - deletedDateTime
+ - description
+ - displayName
+ - definition
+ - isOrganizationDefault
+ - appliesTo
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appliesTo
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of claimsMappingPolicy
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - policies.claimsMappingPolicy
+ summary: Create new navigation property to claimsMappingPolicies for policies
+ operationId: policies_CreateClaimsMappingPolicies
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/policies/claimsMappingPolicies/{claimsMappingPolicy-id}':
+ get:
+ tags:
+ - policies.claimsMappingPolicy
+ summary: Get claimsMappingPolicies from policies
+ operationId: policies_GetClaimsMappingPolicies
+ parameters:
+ - name: claimsMappingPolicy-id
+ in: path
+ description: 'key: id of claimsMappingPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: claimsMappingPolicy
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - deletedDateTime
+ - description
+ - displayName
+ - definition
+ - isOrganizationDefault
+ - appliesTo
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - appliesTo
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ links:
+ appliesTo:
+ operationId: policies.ClaimsMappingPolicies.ListAppliesTo
+ parameters:
+ claimsMappingPolicy-id: $request.path.claimsMappingPolicy-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - policies.claimsMappingPolicy
+ summary: Update the navigation property claimsMappingPolicies in policies
+ operationId: policies_UpdateClaimsMappingPolicies
+ parameters:
+ - name: claimsMappingPolicy-id
+ in: path
+ description: 'key: id of claimsMappingPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: claimsMappingPolicy
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - policies.claimsMappingPolicy
+ summary: Delete navigation property claimsMappingPolicies for policies
+ operationId: policies_DeleteClaimsMappingPolicies
+ parameters:
+ - name: claimsMappingPolicy-id
+ in: path
+ description: 'key: id of claimsMappingPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: claimsMappingPolicy
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /policies/conditionalAccessPolicies:
+ get:
+ tags:
+ - policies.conditionalAccessPolicy
+ summary: Get conditionalAccessPolicies from policies
+ operationId: policies_ListConditionalAccessPolicies
+ 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:
+ enum:
+ - id
+ - id desc
+ - conditions
+ - conditions desc
+ - createdDateTime
+ - createdDateTime desc
+ - description
+ - description desc
+ - displayName
+ - displayName desc
+ - grantControls
+ - grantControls desc
+ - modifiedDateTime
+ - modifiedDateTime desc
+ - sessionControls
+ - sessionControls desc
+ - state
+ - state desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - conditions
+ - createdDateTime
+ - description
+ - displayName
+ - grantControls
+ - modifiedDateTime
+ - sessionControls
+ - state
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of conditionalAccessPolicy
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - policies.conditionalAccessPolicy
+ summary: Create new navigation property to conditionalAccessPolicies for policies
+ operationId: policies_CreateConditionalAccessPolicies
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}':
+ get:
+ tags:
+ - policies.conditionalAccessPolicy
+ summary: Get conditionalAccessPolicies from policies
+ operationId: policies_GetConditionalAccessPolicies
+ parameters:
+ - name: conditionalAccessPolicy-id
+ in: path
+ description: 'key: id of conditionalAccessPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conditionalAccessPolicy
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - conditions
+ - createdDateTime
+ - description
+ - displayName
+ - grantControls
+ - modifiedDateTime
+ - sessionControls
+ - state
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - policies.conditionalAccessPolicy
+ summary: Update the navigation property conditionalAccessPolicies in policies
+ operationId: policies_UpdateConditionalAccessPolicies
+ parameters:
+ - name: conditionalAccessPolicy-id
+ in: path
+ description: 'key: id of conditionalAccessPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conditionalAccessPolicy
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - policies.conditionalAccessPolicy
+ summary: Delete navigation property conditionalAccessPolicies for policies
+ operationId: policies_DeleteConditionalAccessPolicies
+ parameters:
+ - name: conditionalAccessPolicy-id
+ in: path
+ description: 'key: id of conditionalAccessPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conditionalAccessPolicy
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /policies/featureRolloutPolicies:
+ get:
+ tags:
+ - policies.featureRolloutPolicy
+ summary: Get featureRolloutPolicies from policies
+ operationId: policies_ListFeatureRolloutPolicies
+ 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:
+ enum:
+ - id
+ - id desc
+ - description
+ - description desc
+ - displayName
+ - displayName desc
+ - feature
+ - feature desc
+ - isAppliedToOrganization
+ - isAppliedToOrganization desc
+ - isEnabled
+ - isEnabled desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
- description
- displayName
- - definition
- - isOrganizationDefault
+ - feature
+ - isAppliedToOrganization
+ - isEnabled
- appliesTo
type: string
- name: $expand
@@ -3322,13 +3857,13 @@ paths:
content:
application/json:
schema:
- title: Collection of claimsMappingPolicy
+ title: Collection of featureRolloutPolicy
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
'@odata.nextLink':
type: string
additionalProperties:
@@ -3341,15 +3876,15 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.claimsMappingPolicy
- summary: Create new navigation property to claimsMappingPolicies for policies
- operationId: policies_CreateClaimsMappingPolicies
+ - policies.featureRolloutPolicy
+ summary: Create new navigation property to featureRolloutPolicies for policies
+ operationId: policies_CreateFeatureRolloutPolicies
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
required: true
responses:
'201':
@@ -3357,24 +3892,24 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/claimsMappingPolicies/{claimsMappingPolicy-id}':
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}':
get:
tags:
- - policies.claimsMappingPolicy
- summary: Get claimsMappingPolicies from policies
- operationId: policies_GetClaimsMappingPolicies
+ - policies.featureRolloutPolicy
+ summary: Get featureRolloutPolicies from policies
+ operationId: policies_GetFeatureRolloutPolicies
parameters:
- - name: claimsMappingPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of claimsMappingPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: claimsMappingPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
- name: $select
in: query
description: Select properties to be returned
@@ -3386,11 +3921,11 @@ paths:
items:
enum:
- id
- - deletedDateTime
- description
- displayName
- - definition
- - isOrganizationDefault
+ - feature
+ - isAppliedToOrganization
+ - isEnabled
- appliesTo
type: string
- name: $expand
@@ -3412,34 +3947,34 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
links:
appliesTo:
- operationId: policies.ClaimsMappingPolicies.ListAppliesTo
+ operationId: policies.FeatureRolloutPolicies.ListAppliesTo
parameters:
- claimsMappingPolicy-id: $request.path.claimsMappingPolicy-id
+ featureRolloutPolicy-id: $request.path.featureRolloutPolicy-id
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - policies.claimsMappingPolicy
- summary: Update the navigation property claimsMappingPolicies in policies
- operationId: policies_UpdateClaimsMappingPolicies
+ - policies.featureRolloutPolicy
+ summary: Update the navigation property featureRolloutPolicies in policies
+ operationId: policies_UpdateFeatureRolloutPolicies
parameters:
- - name: claimsMappingPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of claimsMappingPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: claimsMappingPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy'
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
required: true
responses:
'204':
@@ -3449,17 +3984,17 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - policies.claimsMappingPolicy
- summary: Delete navigation property claimsMappingPolicies for policies
- operationId: policies_DeleteClaimsMappingPolicies
+ - policies.featureRolloutPolicy
+ summary: Delete navigation property featureRolloutPolicies for policies
+ operationId: policies_DeleteFeatureRolloutPolicies
parameters:
- - name: claimsMappingPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of claimsMappingPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: claimsMappingPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
- name: If-Match
in: header
description: ETag
@@ -3471,13 +4006,20 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- /policies/conditionalAccessPolicies:
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo':
get:
tags:
- - policies.conditionalAccessPolicy
- summary: Get conditionalAccessPolicies from policies
- operationId: policies_ListConditionalAccessPolicies
+ - policies.featureRolloutPolicy
+ summary: Get appliesTo from policies
+ operationId: policies.featureRolloutPolicies_ListAppliesTo
parameters:
+ - name: featureRolloutPolicy-id
+ in: path
+ description: 'key: id of featureRolloutPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: featureRolloutPolicy
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
@@ -3495,22 +4037,8 @@ paths:
enum:
- id
- id desc
- - conditions
- - conditions desc
- - createdDateTime
- - createdDateTime desc
- - description
- - description desc
- - displayName
- - displayName desc
- - grantControls
- - grantControls desc
- - modifiedDateTime
- - modifiedDateTime desc
- - sessionControls
- - sessionControls desc
- - state
- - state desc
+ - deletedDateTime
+ - deletedDateTime desc
type: string
- name: $select
in: query
@@ -3523,14 +4051,7 @@ paths:
items:
enum:
- id
- - conditions
- - createdDateTime
- - description
- - displayName
- - grantControls
- - modifiedDateTime
- - sessionControls
- - state
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -3550,13 +4071,13 @@ paths:
content:
application/json:
schema:
- title: Collection of conditionalAccessPolicy
+ title: Collection of directoryObject
type: object
properties:
value:
type: array
items:
- $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
'@odata.nextLink':
type: string
additionalProperties:
@@ -3569,15 +4090,23 @@ paths:
x-ms-docs-operation-type: operation
post:
tags:
- - policies.conditionalAccessPolicy
- summary: Create new navigation property to conditionalAccessPolicies for policies
- operationId: policies_CreateConditionalAccessPolicies
+ - policies.featureRolloutPolicy
+ summary: Create new navigation property to appliesTo for policies
+ operationId: policies.featureRolloutPolicies_CreateAppliesTo
+ parameters:
+ - name: featureRolloutPolicy-id
+ in: path
+ description: 'key: id of featureRolloutPolicy'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: featureRolloutPolicy
requestBody:
description: New navigation property
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
required: true
responses:
'201':
@@ -3585,24 +4114,31 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}':
+ '/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}':
get:
tags:
- - policies.conditionalAccessPolicy
- summary: Get conditionalAccessPolicies from policies
- operationId: policies_GetConditionalAccessPolicies
+ - policies.featureRolloutPolicy
+ summary: Get appliesTo from policies
+ operationId: policies.featureRolloutPolicies_GetAppliesTo
parameters:
- - name: conditionalAccessPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of conditionalAccessPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: conditionalAccessPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
- name: $select
in: query
description: Select properties to be returned
@@ -3614,14 +4150,7 @@ paths:
items:
enum:
- id
- - conditions
- - createdDateTime
- - description
- - displayName
- - grantControls
- - modifiedDateTime
- - sessionControls
- - state
+ - deletedDateTime
type: string
- name: $expand
in: query
@@ -3641,29 +4170,36 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - policies.conditionalAccessPolicy
- summary: Update the navigation property conditionalAccessPolicies in policies
- operationId: policies_UpdateConditionalAccessPolicies
+ - policies.featureRolloutPolicy
+ summary: Update the navigation property appliesTo in policies
+ operationId: policies.featureRolloutPolicies_UpdateAppliesTo
parameters:
- - name: conditionalAccessPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of conditionalAccessPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: conditionalAccessPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conditionalAccessPolicy'
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
required: true
responses:
'204':
@@ -3673,17 +4209,24 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - policies.conditionalAccessPolicy
- summary: Delete navigation property conditionalAccessPolicies for policies
- operationId: policies_DeleteConditionalAccessPolicies
+ - policies.featureRolloutPolicy
+ summary: Delete navigation property appliesTo for policies
+ operationId: policies.featureRolloutPolicies_DeleteAppliesTo
parameters:
- - name: conditionalAccessPolicy-id
+ - name: featureRolloutPolicy-id
in: path
- description: 'key: id of conditionalAccessPolicy'
+ description: 'key: id of featureRolloutPolicy'
required: true
schema:
type: string
- x-ms-docs-key-type: conditionalAccessPolicy
+ x-ms-docs-key-type: featureRolloutPolicy
+ - name: directoryObject-id
+ in: path
+ description: 'key: id of directoryObject'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: directoryObject
- name: If-Match
in: header
description: ETag
@@ -6647,7 +7190,7 @@ 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: 'Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Null until the operation completes.'
+ description: 'Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Null until the operation completes.'
format: date-time
nullable: true
progress:
@@ -6663,7 +7206,7 @@ components:
submittedDateTime:
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: 'Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
userId:
type: string
@@ -6695,7 +7238,7 @@ 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 Timestamp type represents creation date and time of the location 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''. Read-only.'
+ description: 'The Timestamp type represents creation date and time of the location using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
displayName:
@@ -6704,7 +7247,7 @@ components:
modifiedDateTime:
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 Timestamp type represents last modified date and time of the location 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''. Read-only.'
+ description: 'The Timestamp type represents last modified date and time of the location using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -6720,7 +7263,7 @@ 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 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''. Readonly.'
+ description: '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. Readonly.'
format: date-time
nullable: true
description:
@@ -6735,7 +7278,7 @@ components:
modifiedDateTime:
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 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''. Readonly.'
+ description: '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. Readonly.'
format: date-time
nullable: true
sessionControls:
@@ -6752,19 +7295,19 @@ components:
properties:
clientId:
type: string
- description: The client ID for the application obtained when registering the application with the identity provider. This is a required field.
+ description: The client ID for the application obtained when registering the application with the identity provider. This is a required field. Required. Not nullable.
nullable: true
clientSecret:
type: string
- description: The client secret for the application obtained when registering the application with the identity provider. This is write-only. A read operation will return '****'. This is a required field.
+ description: The client secret for the application obtained when registering the application with the identity provider. This is write-only. A read operation will return ****. This is a required field. Required. Not nullable.
nullable: true
name:
type: string
- description: The display name of the identity provider.
+ description: The display name of the identity provider. Not nullable.
nullable: true
type:
type: string
- description: The identity provider type is a required field.For B2B scenario:GoogleFacebookFor B2C scenario:MicrosoftGoogleAmazonLinkedInFacebookGitHubTwitterWeiboQQWeChatOpenIDConnect
+ description: 'The identity provider type is a required field. For B2B scenario: Google, Facebook. For B2C scenario: Microsoft, Google, Amazon, LinkedIn, Facebook, GitHub, Twitter, Weibo,QQ, WeChat, OpenIDConnect. Not nullable.'
nullable: true
additionalProperties:
type: object
@@ -6795,7 +7338,7 @@ 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 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''.'
+ description: '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
expectedAssessment:
@@ -6820,7 +7363,7 @@ 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 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''.'
+ description: '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
message:
@@ -6887,7 +7430,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -6904,7 +7447,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -6988,7 +7531,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -7033,7 +7576,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -7135,12 +7678,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -7435,6 +7978,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.tokenLifetimePolicy'
+ featureRolloutPolicies:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.featureRolloutPolicy'
+ adminConsentRequestPolicy:
+ $ref: '#/components/schemas/microsoft.graph.adminConsentRequestPolicy'
conditionalAccessPolicies:
type: array
items:
@@ -7451,6 +8000,40 @@ components:
additionalProperties:
type: object
description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
+ microsoft.graph.adminConsentRequestPolicy:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: adminConsentRequestPolicy
+ type: object
+ properties:
+ isEnabled:
+ type: boolean
+ description: Specifies whether the admin consent request feature is enabled or disabled. Required.
+ notifyReviewers:
+ type: boolean
+ description: Specifies whether reviewers will receive notifications. Required.
+ remindersEnabled:
+ type: boolean
+ description: Specifies whether reviewers will receive reminder emails. Required.
+ requestDurationInDays:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Specifies the duration the request is active before it automatically expires if no decision is applied.
+ format: int32
+ reviewers:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope'
+ description: Required.
+ version:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: 'Specifies the version of this policy. When the policy is updated, this version is updated. Read-only.'
+ format: int32
+ additionalProperties:
+ type: object
microsoft.graph.authenticationMethodsPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -7517,6 +8100,48 @@ components:
additionalProperties:
type: object
description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
+ microsoft.graph.featureRolloutPolicy:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: featureRolloutPolicy
+ type: object
+ properties:
+ description:
+ type: string
+ description: A description for this feature rollout policy.
+ nullable: true
+ displayName:
+ type: string
+ description: The display name for this feature rollout policy.
+ feature:
+ $ref: '#/components/schemas/microsoft.graph.stagedFeatureName'
+ isAppliedToOrganization:
+ type: boolean
+ description: Indicates whether this feature rollout policy should be applied to the entire organization.
+ isEnabled:
+ type: boolean
+ description: Indicates whether the feature rollout is enabled.
+ appliesTo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.directoryObject'
+ description: Nullable. Specifies a list of directoryObjects that feature is enabled for.
+ additionalProperties:
+ type: object
+ microsoft.graph.directoryObject:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: directoryObject
+ type: object
+ properties:
+ deletedDateTime:
+ 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
+ format: date-time
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.homeRealmDiscoveryPolicy:
allOf:
- $ref: '#/components/schemas/microsoft.graph.stsPolicy'
@@ -7567,13 +8192,13 @@ components:
items:
type: string
nullable: true
- description: 'A list of appId values for the client applications to match with, or a list with the single value ''all'' to match any client application. Default is the single value ''all''.'
+ description: 'A list of appId values for the client applications to match with, or a list with the single value all to match any client application. Default is the single value all.'
clientApplicationPublisherIds:
type: array
items:
type: string
nullable: true
- description: 'A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value ''all'' to match with client apps from any publisher. Default is the single value ''all''.'
+ description: 'A list of Microsoft Partner Network (MPN) IDs for verified publishers of the client application, or a list with the single value all to match with client apps from any publisher. Default is the single value all.'
clientApplicationsFromVerifiedPublisherOnly:
type: boolean
description: 'Set to true to only match on client applications with a verified publisher. Set to false to match on any client app, even if it does not have a verified publisher. Default is false.'
@@ -7583,17 +8208,17 @@ components:
items:
type: string
nullable: true
- description: 'A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value ''all'' to match with client apps registered in any tenant. Default is the single value ''all''.'
+ description: 'A list of Azure Active Directory tenant IDs in which the client application is registered, or a list with the single value all to match with client apps registered in any tenant. Default is the single value all.'
permissionClassification:
type: string
- description: 'The permission classification for the permission being granted, or ''all'' to match with any permission classification (including permissions which are not classified). Default is all.'
+ description: 'The permission classification for the permission being granted, or all to match with any permission classification (including permissions which are not classified). Default is all.'
nullable: true
permissions:
type: array
items:
type: string
nullable: true
- description: 'The list of id values for the specific permissions to match with, or a list with the single value ''all'' to match with any permission. The id of delegated permissions can be found in the publishedPermissionScopes property of the API''s **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API''s **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API''s **servicePrincipal** object. Default is the single value ''all''.'
+ description: 'The list of id values for the specific permissions to match with, or a list with the single value all to match with any permission. The id of delegated permissions can be found in the publishedPermissionScopes property of the API''s **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API''s **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API''s **servicePrincipal** object. Default is the single value all.'
permissionType:
$ref: '#/components/schemas/microsoft.graph.permissionType'
resourceApplication:
@@ -7663,6 +8288,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -7728,18 +8354,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -7771,7 +8397,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -7793,7 +8419,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -7802,13 +8428,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -7881,7 +8507,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessClientApp'
- description: 'Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other.'
+ description: 'Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required.'
locations:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessLocations'
platforms:
@@ -7890,12 +8516,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.riskLevel'
- description: 'Sign-in risk levels included in the policy. Possible values are: low, medium, high, none.'
+ description: 'Sign-in risk levels included in the policy. Possible values are: low, medium, high, hidden, none, unknownFutureValue. Required.'
userRiskLevels:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.riskLevel'
- description: 'User risk levels included in the policy. Possible values are: low, medium, high, none.'
+ description: 'User risk levels included in the policy. Possible values are: low, medium, high, hidden, none, unknownFutureValue. Required.'
users:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessUsers'
additionalProperties:
@@ -7908,7 +8534,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessGrantControl'
- description: 'List of values of built-in controls required by the policy. Possible values: block, mfa, compliantDevice, domainJoinedDevice, approvedApplication, compliantApplication, passwordChange.'
+ description: 'List of values of built-in controls required by the policy. Possible values: block, mfa, compliantDevice, domainJoinedDevice, approvedApplication, compliantApplication, passwordChange, unknownFutureValue.'
customAuthenticationFactors:
type: array
items:
@@ -8019,20 +8645,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.directoryObject:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: directoryObject
- type: object
- properties:
- deletedDateTime:
- 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
- format: date-time
- nullable: true
- additionalProperties:
- type: object
- description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
microsoft.graph.assignedLicense:
title: assignedLicense
type: object
@@ -8059,7 +8671,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -8307,11 +8919,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -8321,16 +8934,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -8393,15 +9006,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -8413,11 +9026,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -8572,7 +9185,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -8696,7 +9309,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -8995,7 +9608,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -9008,7 +9621,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -9309,13 +9922,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -9585,7 +10198,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -9858,6 +10471,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -9995,6 +10614,24 @@ components:
additionalProperties:
type: object
description: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
+ microsoft.graph.accessReviewReviewerScope:
+ title: accessReviewReviewerScope
+ type: object
+ properties:
+ query:
+ type: string
+ description: The query specifying who will be the reviewer. See table for examples.
+ nullable: true
+ queryRoot:
+ type: string
+ description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.'
+ nullable: true
+ queryType:
+ type: string
+ description: The type of query. Examples include MicrosoftGraph and ARM.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.authenticationMethodConfiguration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -10052,6 +10689,15 @@ components:
description: 'Indicates if user consent to apps is allowed, and if it is, which permission to grant consent and which app consent policy (permissionGrantPolicy) govern the permission for users to grant consent. Value should be in the format managePermissionGrantsForSelf.{id}, where {id} is the id of a built-in or custom app consent policy. An empty list indicates user consent to apps is disabled.'
additionalProperties:
type: object
+ microsoft.graph.stagedFeatureName:
+ title: stagedFeatureName
+ enum:
+ - passthroughAuthentication
+ - seamlessSso
+ - passwordHashSync
+ - emailAsAlternateId
+ - unknownFutureValue
+ type: string
microsoft.graph.permissionType:
title: permissionType
enum:
@@ -10160,12 +10806,12 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessDevicePlatform'
- description: 'Possible values are: android, iOS, windows, windowsPhone, macOS.'
+ description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue.'
includePlatforms:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessDevicePlatform'
- description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all.'
+ description: 'Possible values are: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue.'
additionalProperties:
type: object
microsoft.graph.riskLevel:
@@ -10491,13 +11137,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -10628,7 +11274,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -10675,7 +11321,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 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'''
+ description: '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
name:
@@ -11797,7 +12443,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -11858,7 +12504,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -11870,13 +12516,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -11910,7 +12556,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -12048,7 +12694,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -12082,7 +12728,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -12553,6 +13199,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -12616,7 +13268,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -12630,7 +13282,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -12662,7 +13314,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -12671,7 +13323,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -12711,7 +13363,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -12732,29 +13384,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -14118,6 +14770,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -14882,7 +15538,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -14890,7 +15546,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 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'''
+ description: '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
additionalProperties:
@@ -14929,7 +15585,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -14997,7 +15653,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -15102,7 +15758,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -15228,13 +15884,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -15279,10 +15935,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -15313,7 +15975,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -15342,15 +16004,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -15404,18 +16069,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -15453,7 +16123,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -15493,7 +16163,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -15684,6 +16354,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -16460,6 +17135,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -16520,7 +17209,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -16531,7 +17220,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -16601,7 +17290,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -16916,7 +17605,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -16926,7 +17615,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -16976,6 +17665,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Mail.yml b/openApiDocs/v1.0/Mail.yml
index 7a78f5d9261..87e79eb3de5 100644
--- a/openApiDocs/v1.0/Mail.yml
+++ b/openApiDocs/v1.0/Mail.yml
@@ -5260,7 +5260,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -5273,7 +5273,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -5329,7 +5329,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 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'''
+ description: '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
name:
@@ -5612,13 +5612,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
diff --git a/openApiDocs/v1.0/Notes.yml b/openApiDocs/v1.0/Notes.yml
index 7cbfa5a02c3..89ed1f98588 100644
--- a/openApiDocs/v1.0/Notes.yml
+++ b/openApiDocs/v1.0/Notes.yml
@@ -85075,7 +85075,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -85119,7 +85119,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -85174,7 +85174,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -85216,7 +85216,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
diff --git a/openApiDocs/v1.0/PersonalContacts.yml b/openApiDocs/v1.0/PersonalContacts.yml
index c1e1524016e..69c21363860 100644
--- a/openApiDocs/v1.0/PersonalContacts.yml
+++ b/openApiDocs/v1.0/PersonalContacts.yml
@@ -4149,7 +4149,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -4381,13 +4381,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
diff --git a/openApiDocs/v1.0/Planner.yml b/openApiDocs/v1.0/Planner.yml
index a84759125e2..00b2fa01923 100644
--- a/openApiDocs/v1.0/Planner.yml
+++ b/openApiDocs/v1.0/Planner.yml
@@ -10672,7 +10672,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -10757,7 +10757,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -10769,13 +10769,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -10809,7 +10809,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
diff --git a/openApiDocs/v1.0/Reports.yml b/openApiDocs/v1.0/Reports.yml
index e470e698637..c37587a1ee4 100644
--- a/openApiDocs/v1.0/Reports.yml
+++ b/openApiDocs/v1.0/Reports.yml
@@ -25,6 +25,7 @@ paths:
enum:
- id
- directoryAudits
+ - provisioning
- restrictedSignIns
- signIns
type: string
@@ -40,6 +41,7 @@ paths:
enum:
- '*'
- directoryAudits
+ - provisioning
- restrictedSignIns
- signIns
type: string
@@ -53,6 +55,8 @@ paths:
links:
directoryAudits:
operationId: auditLogs.ListDirectoryAudits
+ provisioning:
+ operationId: auditLogs.ListProvisioning
restrictedSignIns:
operationId: auditLogs.ListRestrictedSignIns
signIns:
@@ -314,6 +318,262 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /auditLogs/provisioning:
+ get:
+ tags:
+ - auditLogs.provisioningObjectSummary
+ summary: Get provisioning from auditLogs
+ operationId: auditLogs_ListProvisioning
+ 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:
+ enum:
+ - id
+ - id desc
+ - activityDateTime
+ - activityDateTime desc
+ - changeId
+ - changeId desc
+ - cycleId
+ - cycleId desc
+ - durationInMilliseconds
+ - durationInMilliseconds desc
+ - initiatedBy
+ - initiatedBy desc
+ - jobId
+ - jobId desc
+ - modifiedProperties
+ - modifiedProperties desc
+ - provisioningAction
+ - provisioningAction desc
+ - provisioningStatusInfo
+ - provisioningStatusInfo desc
+ - provisioningSteps
+ - provisioningSteps desc
+ - servicePrincipal
+ - servicePrincipal desc
+ - sourceIdentity
+ - sourceIdentity desc
+ - sourceSystem
+ - sourceSystem desc
+ - targetIdentity
+ - targetIdentity desc
+ - targetSystem
+ - targetSystem desc
+ - tenantId
+ - tenantId desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - activityDateTime
+ - changeId
+ - cycleId
+ - durationInMilliseconds
+ - initiatedBy
+ - jobId
+ - modifiedProperties
+ - provisioningAction
+ - provisioningStatusInfo
+ - provisioningSteps
+ - servicePrincipal
+ - sourceIdentity
+ - sourceSystem
+ - targetIdentity
+ - targetSystem
+ - tenantId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of provisioningObjectSummary
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - auditLogs.provisioningObjectSummary
+ summary: Create new navigation property to provisioning for auditLogs
+ operationId: auditLogs_CreateProvisioning
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/auditLogs/provisioning/{provisioningObjectSummary-id}':
+ get:
+ tags:
+ - auditLogs.provisioningObjectSummary
+ summary: Get provisioning from auditLogs
+ operationId: auditLogs_GetProvisioning
+ parameters:
+ - name: provisioningObjectSummary-id
+ in: path
+ description: 'key: id of provisioningObjectSummary'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: provisioningObjectSummary
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - activityDateTime
+ - changeId
+ - cycleId
+ - durationInMilliseconds
+ - initiatedBy
+ - jobId
+ - modifiedProperties
+ - provisioningAction
+ - provisioningStatusInfo
+ - provisioningSteps
+ - servicePrincipal
+ - sourceIdentity
+ - sourceSystem
+ - targetIdentity
+ - targetSystem
+ - tenantId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - auditLogs.provisioningObjectSummary
+ summary: Update the navigation property provisioning in auditLogs
+ operationId: auditLogs_UpdateProvisioning
+ parameters:
+ - name: provisioningObjectSummary-id
+ in: path
+ description: 'key: id of provisioningObjectSummary'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: provisioningObjectSummary
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - auditLogs.provisioningObjectSummary
+ summary: Delete navigation property provisioning for auditLogs
+ operationId: auditLogs_DeleteProvisioning
+ parameters:
+ - name: provisioningObjectSummary-id
+ in: path
+ description: 'key: id of provisioningObjectSummary'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: provisioningObjectSummary
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
/auditLogs/restrictedSignIns:
get:
tags:
@@ -4009,6 +4269,10 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.directoryAudit'
description: Read-only. Nullable.
+ provisioning:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary'
restrictedSignIns:
type: array
items:
@@ -4029,7 +4293,7 @@ components:
activityDateTime:
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: 'Indicates the date and time the activity was performed. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Indicates the date and time the activity was performed. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.'
format: date-time
activityDisplayName:
type: string
@@ -4059,7 +4323,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.operationResult'
resultReason:
type: string
- description: Indicates the reason for failure if the result is 'Failure' or 'timeout'.
+ description: Indicates the reason for failure if the result is failure or timeout.
nullable: true
targetResources:
type: array
@@ -4068,6 +4332,68 @@ components:
description: 'Indicates information on which resource was changed due to the activity. Target Resource Type can be User, Device, Directory, App, Role, Group, Policy or Other.'
additionalProperties:
type: object
+ microsoft.graph.provisioningObjectSummary:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: provisioningObjectSummary
+ type: object
+ properties:
+ activityDateTime:
+ 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 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
+ changeId:
+ type: string
+ description: Unique ID of this change in this cycle.
+ nullable: true
+ cycleId:
+ type: string
+ description: Unique ID per job iteration.
+ nullable: true
+ durationInMilliseconds:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Indicates how long this provisioning action took to finish. Measured in milliseconds.
+ format: int32
+ nullable: true
+ initiatedBy:
+ $ref: '#/components/schemas/microsoft.graph.initiator'
+ jobId:
+ type: string
+ description: The unique ID for the whole provisioning job.
+ nullable: true
+ modifiedProperties:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.modifiedProperty'
+ description: Details of each property that was modified in this provisioning action on this object.
+ provisioningAction:
+ $ref: '#/components/schemas/microsoft.graph.provisioningAction'
+ provisioningStatusInfo:
+ $ref: '#/components/schemas/microsoft.graph.provisioningStatusInfo'
+ provisioningSteps:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.provisioningStep'
+ description: Details of each step in provisioning.
+ servicePrincipal:
+ $ref: '#/components/schemas/microsoft.graph.provisioningServicePrincipal'
+ sourceIdentity:
+ $ref: '#/components/schemas/microsoft.graph.provisionedIdentity'
+ sourceSystem:
+ $ref: '#/components/schemas/microsoft.graph.provisioningSystem'
+ targetIdentity:
+ $ref: '#/components/schemas/microsoft.graph.provisionedIdentity'
+ targetSystem:
+ $ref: '#/components/schemas/microsoft.graph.provisioningSystem'
+ tenantId:
+ type: string
+ description: Unique Azure AD tenant ID.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.restrictedSignIn:
allOf:
- $ref: '#/components/schemas/microsoft.graph.signIn'
@@ -4102,7 +4428,7 @@ components:
description: A list of conditional access policies that are triggered by the corresponding sign-in activity.
clientAppUsed:
type: string
- description: 'The legacy client used for sign-in activity. For example, Browser, Exchange Active Sync,Modern clients, IMAP, MAPI, SMTP, or POP.'
+ description: 'The legacy client used for sign-in activity. For example: Browser, Exchange Active Sync, Modern clients, IMAP, MAPI, SMTP, or POP.'
nullable: true
conditionalAccessStatus:
$ref: '#/components/schemas/microsoft.graph.conditionalAccessStatus'
@@ -4113,7 +4439,7 @@ 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 sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''.'
+ description: 'The date and time the sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.'
format: date-time
deviceDetail:
$ref: '#/components/schemas/microsoft.graph.deviceDetail'
@@ -4340,6 +4666,106 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.initiator:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.identity'
+ - title: initiator
+ type: object
+ properties:
+ initiatorType:
+ $ref: '#/components/schemas/microsoft.graph.initiatorType'
+ additionalProperties:
+ type: object
+ microsoft.graph.modifiedProperty:
+ title: modifiedProperty
+ type: object
+ properties:
+ displayName:
+ type: string
+ description: Name of property that was modified.
+ nullable: true
+ newValue:
+ type: string
+ description: New property value.
+ nullable: true
+ oldValue:
+ type: string
+ description: Old property value.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.provisioningAction:
+ title: provisioningAction
+ enum:
+ - other
+ - create
+ - delete
+ - disable
+ - update
+ - stagedDelete
+ - unknownFutureValue
+ type: string
+ microsoft.graph.provisioningStatusInfo:
+ title: provisioningStatusInfo
+ type: object
+ properties:
+ errorInformation:
+ $ref: '#/components/schemas/microsoft.graph.provisioningErrorInfo'
+ status:
+ $ref: '#/components/schemas/microsoft.graph.provisioningResult'
+ additionalProperties:
+ type: object
+ microsoft.graph.provisioningStep:
+ title: provisioningStep
+ type: object
+ properties:
+ description:
+ type: string
+ description: Summary of what occurred during the step.
+ nullable: true
+ details:
+ $ref: '#/components/schemas/microsoft.graph.detailsInfo'
+ name:
+ type: string
+ description: Name of the step.
+ nullable: true
+ provisioningStepType:
+ $ref: '#/components/schemas/microsoft.graph.provisioningStepType'
+ status:
+ $ref: '#/components/schemas/microsoft.graph.provisioningResult'
+ additionalProperties:
+ type: object
+ microsoft.graph.provisioningServicePrincipal:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.identity'
+ - title: provisioningServicePrincipal
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.provisionedIdentity:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.identity'
+ - title: provisionedIdentity
+ type: object
+ properties:
+ details:
+ $ref: '#/components/schemas/microsoft.graph.detailsInfo'
+ identityType:
+ type: string
+ description: 'Type of identity that has been provisioned, such as ''user'' or ''group''.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.provisioningSystem:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.identity'
+ - title: provisioningSystem
+ type: object
+ properties:
+ details:
+ $ref: '#/components/schemas/microsoft.graph.detailsInfo'
+ additionalProperties:
+ type: object
microsoft.graph.appliedConditionalAccessPolicy:
title: appliedConditionalAccessPolicy
type: object
@@ -4362,7 +4788,7 @@ components:
description: 'Refers to the session controls enforced by the conditional access policy (example: ''Require app enforced controls'').'
id:
type: string
- description: Unique GUID of the conditional access policy.
+ description: Identifier of the conditional access policy.
nullable: true
result:
$ref: '#/components/schemas/microsoft.graph.appliedConditionalAccessPolicyResult'
@@ -4601,24 +5027,73 @@ components:
- azureAD
- unknownFutureValue
type: string
- microsoft.graph.modifiedProperty:
- title: modifiedProperty
+ microsoft.graph.identity:
+ title: identity
type: object
properties:
displayName:
type: string
- description: Name of property that was modified.
+ description: 'The identity''s display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may 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
- newValue:
+ id:
type: string
- description: New property value.
+ description: Unique identifier for the identity.
nullable: true
- oldValue:
+ additionalProperties:
+ type: object
+ microsoft.graph.initiatorType:
+ title: initiatorType
+ enum:
+ - user
+ - application
+ - system
+ - unknownFutureValue
+ type: string
+ microsoft.graph.provisioningErrorInfo:
+ title: provisioningErrorInfo
+ type: object
+ properties:
+ additionalDetails:
+ type: string
+ nullable: true
+ errorCategory:
+ $ref: '#/components/schemas/microsoft.graph.provisioningStatusErrorCategory'
+ errorCode:
+ type: string
+ nullable: true
+ reason:
+ type: string
+ nullable: true
+ recommendedAction:
type: string
- description: Old property value.
nullable: true
additionalProperties:
type: object
+ microsoft.graph.provisioningResult:
+ title: provisioningResult
+ enum:
+ - success
+ - failure
+ - skipped
+ - warning
+ - unknownFutureValue
+ type: string
+ microsoft.graph.detailsInfo:
+ title: detailsInfo
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.provisioningStepType:
+ title: provisioningStepType
+ enum:
+ - import
+ - scoping
+ - matching
+ - processing
+ - referenceResolution
+ - export
+ - unknownFutureValue
+ type: string
microsoft.graph.appliedConditionalAccessPolicyResult:
title: appliedConditionalAccessPolicyResult
enum:
@@ -4673,6 +5148,14 @@ components:
description: The structure of this object is service-specific
additionalProperties:
type: object
+ microsoft.graph.provisioningStatusErrorCategory:
+ title: provisioningStatusErrorCategory
+ enum:
+ - failure
+ - nonServiceFailure
+ - success
+ - unknownFutureValue
+ type: string
odata.error.detail:
required:
- code
diff --git a/openApiDocs/v1.0/Security.yml b/openApiDocs/v1.0/Security.yml
index 9a171739087..6c98f7cdbb0 100644
--- a/openApiDocs/v1.0/Security.yml
+++ b/openApiDocs/v1.0/Security.yml
@@ -981,7 +981,7 @@ components:
closedDateTime:
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: 'Time at which the alert was closed. 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'' (supports update).'
+ description: 'Time at which the alert was closed. 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 (supports update).'
format: date-time
nullable: true
cloudAppStates:
@@ -1005,7 +1005,7 @@ 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: 'Time at which the alert was created by the alert provider. 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''. Required.'
+ description: 'Time at which the alert was created by the alert provider. 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. Required.'
format: date-time
nullable: true
description:
@@ -1021,7 +1021,7 @@ components:
eventDateTime:
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: 'Time at which the event(s) that served as the trigger(s) to generate the alert occurred. 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''. Required.'
+ description: 'Time at which the event(s) that served as the trigger(s) to generate the alert occurred. 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. Required.'
format: date-time
nullable: true
feedback:
@@ -1059,7 +1059,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: 'Time at which the alert entity was last modified. 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''.'
+ description: 'Time at which the alert entity was last modified. 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
malwareStates:
@@ -1386,7 +1386,7 @@ components:
updatedDateTime:
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 of the alert update. 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'''
+ description: 'Date and time of the alert update. 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
user:
@@ -1541,7 +1541,7 @@ components:
domainRegisteredDateTime:
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 when the destination domain was registered. 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'''
+ description: 'Date when the destination domain was registered. 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
localDnsName:
@@ -1605,7 +1605,7 @@ 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: 'Time at which the process was started. 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''.'
+ description: 'Time at which the process was started. 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
fileHash:
@@ -1623,7 +1623,7 @@ components:
parentProcessCreatedDateTime:
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 at which the parent process was started. 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''.'
+ description: 'DateTime at which the parent process was started. 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
parentProcessId:
@@ -1794,7 +1794,7 @@ components:
logonDateTime:
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: 'Time at which the sign-in occurred. 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''.'
+ description: 'Time at which the sign-in occurred. 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
logonId:
diff --git a/openApiDocs/v1.0/Sites.yml b/openApiDocs/v1.0/Sites.yml
index 0cddd34a27c..8373c5be768 100644
--- a/openApiDocs/v1.0/Sites.yml
+++ b/openApiDocs/v1.0/Sites.yml
@@ -5481,6 +5481,8 @@ paths:
- latestSupportedTlsVersion desc
- lifecycleNotificationUrl
- lifecycleNotificationUrl desc
+ - notificationQueryOptions
+ - notificationQueryOptions desc
- notificationUrl
- notificationUrl desc
- resource
@@ -5507,6 +5509,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -5631,6 +5634,7 @@ paths:
- includeResourceData
- latestSupportedTlsVersion
- lifecycleNotificationUrl
+ - notificationQueryOptions
- notificationUrl
- resource
type: string
@@ -12563,6 +12567,270 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/sites/{site-id}/permissions':
+ get:
+ tags:
+ - sites.permission
+ summary: Get permissions from sites
+ operationId: sites_ListPermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - $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:
+ enum:
+ - id
+ - id desc
+ - expirationDateTime
+ - expirationDateTime desc
+ - grantedTo
+ - grantedTo desc
+ - grantedToIdentities
+ - grantedToIdentities desc
+ - hasPassword
+ - hasPassword desc
+ - inheritedFrom
+ - inheritedFrom desc
+ - invitation
+ - invitation desc
+ - link
+ - link desc
+ - roles
+ - roles desc
+ - shareId
+ - shareId desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - expirationDateTime
+ - grantedTo
+ - grantedToIdentities
+ - hasPassword
+ - inheritedFrom
+ - invitation
+ - link
+ - roles
+ - shareId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of permission
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - sites.permission
+ summary: Create new navigation property to permissions for sites
+ operationId: sites_CreatePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/sites/{site-id}/permissions/{permission-id}':
+ get:
+ tags:
+ - sites.permission
+ summary: Get permissions from sites
+ operationId: sites_GetPermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - expirationDateTime
+ - grantedTo
+ - grantedToIdentities
+ - hasPassword
+ - inheritedFrom
+ - invitation
+ - link
+ - roles
+ - shareId
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - sites.permission
+ summary: Update the navigation property permissions in sites
+ operationId: sites_UpdatePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.permission'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - sites.permission
+ summary: Delete navigation property permissions for sites
+ operationId: sites_DeletePermissions
+ parameters:
+ - name: site-id
+ in: path
+ description: 'key: id of site'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: site
+ - name: permission-id
+ in: path
+ description: 'key: id of permission'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: permission
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
'/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant':
post:
tags:
@@ -13835,6 +14103,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -13853,7 +14125,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -13955,7 +14227,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -13964,24 +14236,6 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteSourceService'
additionalProperties:
type: object
- microsoft.graph.driveRecipient:
- title: driveRecipient
- type: object
- properties:
- alias:
- type: string
- description: 'The alias of the domain object, for cases where an email address is unavailable (e.g. security groups).'
- nullable: true
- email:
- type: string
- description: 'The email address for the recipient, if the recipient has an associated email address.'
- nullable: true
- objectId:
- type: string
- description: The unique identifier for the recipient in the directory.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.permission:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -14023,6 +14277,24 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.driveRecipient:
+ title: driveRecipient
+ type: object
+ properties:
+ alias:
+ type: string
+ description: 'The alias of the domain object, for cases where an email address is unavailable (e.g. security groups).'
+ nullable: true
+ email:
+ type: string
+ description: 'The email address for the recipient, if the recipient has an associated email address.'
+ nullable: true
+ objectId:
+ type: string
+ description: The unique identifier for the recipient in the directory.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.baseItem:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -15273,7 +15545,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -15290,7 +15562,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -15374,7 +15646,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -15419,7 +15691,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -15521,12 +15793,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -15849,7 +16121,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -16334,7 +16606,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -16582,11 +16854,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -16596,16 +16869,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -16694,15 +16967,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -16714,11 +16987,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -16873,7 +17146,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -16997,7 +17270,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -17296,7 +17569,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -17309,7 +17582,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -17510,13 +17783,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -17786,7 +18059,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -18045,6 +18318,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -18150,7 +18429,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -18164,7 +18443,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -18587,13 +18866,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -18732,7 +19011,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -18779,7 +19058,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 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'''
+ description: '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
name:
@@ -19439,7 +19718,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -19500,7 +19779,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -19512,13 +19791,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -19552,7 +19831,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -19818,6 +20097,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -20090,6 +20370,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -20153,7 +20439,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -20167,7 +20453,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -20199,7 +20485,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -20208,7 +20494,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -20248,7 +20534,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -20269,29 +20555,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -21553,7 +21839,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -21561,7 +21847,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 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'''
+ description: '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
additionalProperties:
@@ -21652,18 +21938,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -21695,7 +21981,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -21717,7 +22003,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -21726,13 +22012,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -21778,7 +22064,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -21904,13 +22190,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -21955,10 +22241,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -21989,7 +22281,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -22018,15 +22310,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -22080,18 +22375,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -22129,7 +22429,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -22169,7 +22469,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -22360,6 +22660,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -22926,6 +23231,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -22986,7 +23305,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -22997,7 +23316,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -23067,7 +23386,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -23273,7 +23592,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -23283,7 +23602,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -23333,6 +23652,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookChartGridlinesFormat:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Teams.yml b/openApiDocs/v1.0/Teams.yml
index 44f3d4f9ce2..c78069112a4 100644
--- a/openApiDocs/v1.0/Teams.yml
+++ b/openApiDocs/v1.0/Teams.yml
@@ -658,6 +658,7 @@ paths:
- topic
- installedApps
- members
+ - messages
- tabs
type: string
- name: $expand
@@ -673,6 +674,7 @@ paths:
- '*'
- installedApps
- members
+ - messages
- tabs
type: string
responses:
@@ -751,6 +753,7 @@ paths:
- topic
- installedApps
- members
+ - messages
- tabs
type: string
- name: $expand
@@ -766,6 +769,7 @@ paths:
- '*'
- installedApps
- members
+ - messages
- tabs
type: string
responses:
@@ -784,6 +788,10 @@ paths:
operationId: chats.ListMembers
parameters:
chat-id: $request.path.chat-id
+ messages:
+ operationId: chats.ListMessages
+ parameters:
+ chat-id: $request.path.chat-id
tabs:
operationId: chats.ListTabs
parameters:
@@ -1585,18 +1593,932 @@ paths:
parameters:
- name: chat-id
in: path
- description: 'key: id of chat'
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: conversationMember-id
+ in: path
+ description: 'key: id of conversationMember'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conversationMember
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - displayName
+ - roles
+ - visibleHistoryStartDateTime
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conversationMember'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - chats.conversationMember
+ summary: Update the navigation property members in chats
+ operationId: chats_UpdateMembers
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: conversationMember-id
+ in: path
+ description: 'key: id of conversationMember'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conversationMember
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.conversationMember'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - chats.conversationMember
+ summary: Delete navigation property members for chats
+ operationId: chats_DeleteMembers
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: conversationMember-id
+ in: path
+ description: 'key: id of conversationMember'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: conversationMember
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get messages from chats
+ operationId: chats_ListMessages
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - $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:
+ enum:
+ - id
+ - id desc
+ - attachments
+ - attachments desc
+ - body
+ - body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
+ - createdDateTime
+ - createdDateTime desc
+ - deletedDateTime
+ - deletedDateTime desc
+ - etag
+ - etag desc
+ - from
+ - from desc
+ - importance
+ - importance desc
+ - lastEditedDateTime
+ - lastEditedDateTime desc
+ - lastModifiedDateTime
+ - lastModifiedDateTime desc
+ - locale
+ - locale desc
+ - mentions
+ - mentions desc
+ - messageType
+ - messageType desc
+ - policyViolation
+ - policyViolation desc
+ - reactions
+ - reactions desc
+ - replyToId
+ - replyToId desc
+ - subject
+ - subject desc
+ - summary
+ - summary desc
+ - webUrl
+ - webUrl desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - attachments
+ - body
+ - channelIdentity
+ - chatId
+ - createdDateTime
+ - deletedDateTime
+ - etag
+ - from
+ - importance
+ - lastEditedDateTime
+ - lastModifiedDateTime
+ - locale
+ - mentions
+ - messageType
+ - policyViolation
+ - reactions
+ - replyToId
+ - subject
+ - summary
+ - webUrl
+ - hostedContents
+ - replies
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - hostedContents
+ - replies
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of chatMessage
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - chats.chatMessage
+ summary: Create new navigation property to messages for chats
+ operationId: chats_CreateMessages
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get messages from chats
+ operationId: chats_GetMessages
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - attachments
+ - body
+ - channelIdentity
+ - chatId
+ - createdDateTime
+ - deletedDateTime
+ - etag
+ - from
+ - importance
+ - lastEditedDateTime
+ - lastModifiedDateTime
+ - locale
+ - mentions
+ - messageType
+ - policyViolation
+ - reactions
+ - replyToId
+ - subject
+ - summary
+ - webUrl
+ - hostedContents
+ - replies
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - hostedContents
+ - replies
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ links:
+ hostedContents:
+ operationId: chats.Messages.ListHostedContents
+ parameters:
+ chat-id: $request.path.chat-id
+ chatMessage-id: $request.path.chatMessage-id
+ replies:
+ operationId: chats.Messages.ListReplies
+ parameters:
+ chat-id: $request.path.chat-id
+ chatMessage-id: $request.path.chatMessage-id
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - chats.chatMessage
+ summary: Update the navigation property messages in chats
+ operationId: chats_UpdateMessages
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - chats.chatMessage
+ summary: Delete navigation property messages for chats
+ operationId: chats_DeleteMessages
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get hostedContents from chats
+ operationId: chats.messages_ListHostedContents
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - $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:
+ enum:
+ - id
+ - id desc
+ - contentBytes
+ - contentBytes desc
+ - contentType
+ - contentType desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - contentBytes
+ - contentType
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of chatMessageHostedContent
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - chats.chatMessage
+ summary: Create new navigation property to hostedContents for chats
+ operationId: chats.messages_CreateHostedContents
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get hostedContents from chats
+ operationId: chats.messages_GetHostedContents
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessageHostedContent-id
+ in: path
+ description: 'key: id of chatMessageHostedContent'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessageHostedContent
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - contentBytes
+ - contentType
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - chats.chatMessage
+ summary: Update the navigation property hostedContents in chats
+ operationId: chats.messages_UpdateHostedContents
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessageHostedContent-id
+ in: path
+ description: 'key: id of chatMessageHostedContent'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessageHostedContent
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - chats.chatMessage
+ summary: Delete navigation property hostedContents for chats
+ operationId: chats.messages_DeleteHostedContents
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessageHostedContent-id
+ in: path
+ description: 'key: id of chatMessageHostedContent'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessageHostedContent
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}/replies':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get replies from chats
+ operationId: chats.messages_ListReplies
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - $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:
+ enum:
+ - id
+ - id desc
+ - attachments
+ - attachments desc
+ - body
+ - body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
+ - createdDateTime
+ - createdDateTime desc
+ - deletedDateTime
+ - deletedDateTime desc
+ - etag
+ - etag desc
+ - from
+ - from desc
+ - importance
+ - importance desc
+ - lastEditedDateTime
+ - lastEditedDateTime desc
+ - lastModifiedDateTime
+ - lastModifiedDateTime desc
+ - locale
+ - locale desc
+ - mentions
+ - mentions desc
+ - messageType
+ - messageType desc
+ - policyViolation
+ - policyViolation desc
+ - reactions
+ - reactions desc
+ - replyToId
+ - replyToId desc
+ - subject
+ - subject desc
+ - summary
+ - summary desc
+ - webUrl
+ - webUrl desc
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - id
+ - attachments
+ - body
+ - channelIdentity
+ - chatId
+ - createdDateTime
+ - deletedDateTime
+ - etag
+ - from
+ - importance
+ - lastEditedDateTime
+ - lastModifiedDateTime
+ - locale
+ - mentions
+ - messageType
+ - policyViolation
+ - reactions
+ - replyToId
+ - subject
+ - summary
+ - webUrl
+ - hostedContents
+ - replies
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ enum:
+ - '*'
+ - hostedContents
+ - replies
+ type: string
+ responses:
+ '200':
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ title: Collection of chatMessage
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ '@odata.nextLink':
+ type: string
+ additionalProperties:
+ type: object
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - chats.chatMessage
+ summary: Create new navigation property to replies for chats
+ operationId: chats.messages_CreateReplies
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ required: true
+ responses:
+ '201':
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}':
+ get:
+ tags:
+ - chats.chatMessage
+ summary: Get replies from chats
+ operationId: chats.messages_GetReplies
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
required: true
schema:
type: string
- x-ms-docs-key-type: chat
- - name: conversationMember-id
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessage-id1
in: path
- description: 'key: id of conversationMember'
+ description: 'key: id of chatMessage'
required: true
schema:
type: string
- x-ms-docs-key-type: conversationMember
+ x-ms-docs-key-type: chatMessage
- name: $select
in: query
description: Select properties to be returned
@@ -1608,9 +2530,28 @@ paths:
items:
enum:
- id
- - displayName
- - roles
- - visibleHistoryStartDateTime
+ - attachments
+ - body
+ - channelIdentity
+ - chatId
+ - createdDateTime
+ - deletedDateTime
+ - etag
+ - from
+ - importance
+ - lastEditedDateTime
+ - lastModifiedDateTime
+ - locale
+ - mentions
+ - messageType
+ - policyViolation
+ - reactions
+ - replyToId
+ - subject
+ - summary
+ - webUrl
+ - hostedContents
+ - replies
type: string
- name: $expand
in: query
@@ -1623,6 +2564,8 @@ paths:
items:
enum:
- '*'
+ - hostedContents
+ - replies
type: string
responses:
'200':
@@ -1630,15 +2573,28 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conversationMember'
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ links:
+ hostedContents:
+ operationId: chats.messages.Replies.ListHostedContents
+ parameters:
+ chat-id: $request.path.chat-id
+ chatMessage-id: $request.path.chatMessage-id
+ chatMessage-id1: $request.path.chatMessage-id1
+ replies:
+ operationId: chats.messages.Replies.ListReplies
+ parameters:
+ chat-id: $request.path.chat-id
+ chatMessage-id: $request.path.chatMessage-id
+ chatMessage-id1: $request.path.chatMessage-id1
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- - chats.conversationMember
- summary: Update the navigation property members in chats
- operationId: chats_UpdateMembers
+ - chats.chatMessage
+ summary: Update the navigation property replies in chats
+ operationId: chats.messages_UpdateReplies
parameters:
- name: chat-id
in: path
@@ -1647,19 +2603,26 @@ paths:
schema:
type: string
x-ms-docs-key-type: chat
- - name: conversationMember-id
+ - name: chatMessage-id
in: path
- description: 'key: id of conversationMember'
+ description: 'key: id of chatMessage'
required: true
schema:
type: string
- x-ms-docs-key-type: conversationMember
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessage-id1
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
requestBody:
description: New navigation property values
content:
application/json:
schema:
- $ref: '#/components/schemas/microsoft.graph.conversationMember'
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
required: true
responses:
'204':
@@ -1669,9 +2632,9 @@ paths:
x-ms-docs-operation-type: operation
delete:
tags:
- - chats.conversationMember
- summary: Delete navigation property members for chats
- operationId: chats_DeleteMembers
+ - chats.chatMessage
+ summary: Delete navigation property replies for chats
+ operationId: chats.messages_DeleteReplies
parameters:
- name: chat-id
in: path
@@ -1680,13 +2643,20 @@ paths:
schema:
type: string
x-ms-docs-key-type: chat
- - name: conversationMember-id
+ - name: chatMessage-id
in: path
- description: 'key: id of conversationMember'
+ description: 'key: id of chatMessage'
required: true
schema:
type: string
- x-ms-docs-key-type: conversationMember
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessage-id1
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
- name: If-Match
in: header
description: ETag
@@ -1698,6 +2668,112 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/chats/{chat-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()':
+ get:
+ tags:
+ - chats.Functions
+ summary: Invoke function delta
+ operationId: chats.messages.replies_delta
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/chats/{chat-id}/messages/microsoft.graph.delta()':
+ get:
+ tags:
+ - chats.Functions
+ summary: Invoke function delta
+ operationId: chats.messages_delta
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/chats/{chat-id}/microsoft.graph.sendActivityNotification':
+ post:
+ tags:
+ - chats.Actions
+ summary: Invoke action sendActivityNotification
+ operationId: chats_sendActivityNotification
+ parameters:
+ - name: chat-id
+ in: path
+ description: 'key: id of chat'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chat
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ topic:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopic'
+ activityType:
+ type: string
+ nullable: true
+ chainId:
+ type: integer
+ format: int64
+ nullable: true
+ previewText:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ templateParameters:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValuePair'
+ recipient:
+ $ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient'
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/chats/{chat-id}/tabs':
get:
tags:
@@ -2161,6 +3237,7 @@ paths:
enum:
- id
- classification
+ - createdDateTime
- description
- displayName
- funSettings
@@ -2320,6 +3397,8 @@ paths:
- id desc
- classification
- classification desc
+ - createdDateTime
+ - createdDateTime desc
- description
- description desc
- displayName
@@ -2355,6 +3434,7 @@ paths:
enum:
- id
- classification
+ - createdDateTime
- description
- displayName
- funSettings
@@ -2466,6 +3546,7 @@ paths:
enum:
- id
- classification
+ - createdDateTime
- description
- displayName
- funSettings
@@ -2630,6 +3711,8 @@ paths:
enum:
- id
- id desc
+ - createdDateTime
+ - createdDateTime desc
- description
- description desc
- displayName
@@ -2654,6 +3737,7 @@ paths:
items:
enum:
- id
+ - createdDateTime
- description
- displayName
- email
@@ -2766,6 +3850,7 @@ paths:
items:
enum:
- id
+ - createdDateTime
- description
- displayName
- email
@@ -3492,6 +4577,10 @@ paths:
- attachments desc
- body
- body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
- createdDateTime
- createdDateTime desc
- deletedDateTime
@@ -3538,6 +4627,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -3672,6 +4763,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -3851,6 +4944,10 @@ paths:
enum:
- id
- id desc
+ - contentBytes
+ - contentBytes desc
+ - contentType
+ - contentType desc
type: string
- name: $select
in: query
@@ -3863,6 +4960,8 @@ paths:
items:
enum:
- id
+ - contentBytes
+ - contentType
type: string
- name: $expand
in: query
@@ -3989,6 +5088,8 @@ paths:
items:
enum:
- id
+ - contentBytes
+ - contentType
type: string
- name: $expand
in: query
@@ -4104,100 +5205,6 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value':
- get:
- tags:
- - teams.channel
- summary: Get media content for the navigation property hostedContents from teams
- operationId: teams.channels.messages_GetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: channel-id
- in: path
- description: 'key: id of channel'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: channel
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- responses:
- '200':
- description: Retrieved media content
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- put:
- tags:
- - teams.channel
- summary: Update media content for the navigation property hostedContents in teams
- operationId: teams.channels.messages_SetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: channel-id
- in: path
- description: 'key: id of channel'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: channel
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New media content.
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
'/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies':
get:
tags:
@@ -4247,6 +5254,10 @@ paths:
- attachments desc
- body
- body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
- createdDateTime
- createdDateTime desc
- deletedDateTime
@@ -4293,6 +5304,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -4441,6 +5454,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -4591,6 +5606,106 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ '/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()':
+ get:
+ tags:
+ - teams.Functions
+ summary: Invoke function delta
+ operationId: teams.channels.messages.replies_delta
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ - name: channel-id
+ in: path
+ description: 'key: id of channel'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: channel
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/teams/{team-id}/channels/{channel-id}/messages/microsoft.graph.delta()':
+ get:
+ tags:
+ - teams.Functions
+ summary: Invoke function delta
+ operationId: teams.channels.messages_delta
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ - name: channel-id
+ in: path
+ description: 'key: id of channel'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: channel
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/teams/{team-id}/channels/{channel-id}/microsoft.graph.completeMigration':
+ post:
+ tags:
+ - teams.Actions
+ summary: Invoke action completeMigration
+ operationId: teams.channels_completeMigration
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ - name: channel-id
+ in: path
+ description: 'key: id of channel'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: channel
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/teams/{team-id}/channels/{channel-id}/tabs':
get:
tags:
@@ -6447,6 +7562,73 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/teams/{team-id}/microsoft.graph.completeMigration':
+ post:
+ tags:
+ - teams.Actions
+ summary: Invoke action completeMigration
+ operationId: teams_completeMigration
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
+ '/teams/{team-id}/microsoft.graph.sendActivityNotification':
+ post:
+ tags:
+ - teams.Actions
+ summary: Invoke action sendActivityNotification
+ operationId: teams_sendActivityNotification
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ topic:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopic'
+ activityType:
+ type: string
+ nullable: true
+ chainId:
+ type: integer
+ format: int64
+ nullable: true
+ previewText:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ templateParameters:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValuePair'
+ recipient:
+ $ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient'
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
'/teams/{team-id}/microsoft.graph.unarchive':
post:
tags:
@@ -6752,6 +7934,7 @@ paths:
items:
enum:
- id
+ - createdDateTime
- description
- displayName
- email
@@ -7373,6 +8556,10 @@ paths:
- attachments desc
- body
- body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
- createdDateTime
- createdDateTime desc
- deletedDateTime
@@ -7419,6 +8606,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -7539,6 +8728,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -7695,6 +8886,10 @@ paths:
enum:
- id
- id desc
+ - contentBytes
+ - contentBytes desc
+ - contentType
+ - contentType desc
type: string
- name: $select
in: query
@@ -7707,6 +8902,8 @@ paths:
items:
enum:
- id
+ - contentBytes
+ - contentType
type: string
- name: $expand
in: query
@@ -7819,6 +9016,8 @@ paths:
items:
enum:
- id
+ - contentBytes
+ - contentType
type: string
- name: $expand
in: query
@@ -7920,86 +9119,6 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- '/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value':
- get:
- tags:
- - teams.channel
- summary: Get media content for the navigation property hostedContents from teams
- operationId: teams.primaryChannel.messages_GetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- responses:
- '200':
- description: Retrieved media content
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
- put:
- tags:
- - teams.channel
- summary: Update media content for the navigation property hostedContents in teams
- operationId: teams.primaryChannel.messages_SetHostedContentsContent
- parameters:
- - name: team-id
- in: path
- description: 'key: id of team'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: team
- - name: chatMessage-id
- in: path
- description: 'key: id of chatMessage'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessage
- - name: chatMessageHostedContent-id
- in: path
- description: 'key: id of chatMessageHostedContent'
- required: true
- schema:
- type: string
- x-ms-docs-key-type: chatMessageHostedContent
- requestBody:
- description: New media content.
- content:
- application/octet-stream:
- schema:
- type: string
- format: binary
- required: true
- responses:
- '204':
- description: Success
- default:
- $ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
'/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies':
get:
tags:
@@ -8042,6 +9161,10 @@ paths:
- attachments desc
- body
- body desc
+ - channelIdentity
+ - channelIdentity desc
+ - chatId
+ - chatId desc
- createdDateTime
- createdDateTime desc
- deletedDateTime
@@ -8088,6 +9211,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -8222,6 +9347,8 @@ paths:
- id
- attachments
- body
+ - channelIdentity
+ - chatId
- createdDateTime
- deletedDateTime
- etag
@@ -8318,11 +9445,50 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
- delete:
+ delete:
+ tags:
+ - teams.channel
+ summary: Delete navigation property replies for teams
+ operationId: teams.primaryChannel.messages_DeleteReplies
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: team
+ - name: chatMessage-id
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: chatMessage-id1
+ in: path
+ description: 'key: id of chatMessage'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: chatMessage
+ - name: If-Match
+ in: header
+ description: ETag
+ schema:
+ type: string
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/microsoft.graph.delta()':
+ get:
tags:
- - teams.channel
- summary: Delete navigation property replies for teams
- operationId: teams.primaryChannel.messages_DeleteReplies
+ - teams.Functions
+ summary: Invoke function delta
+ operationId: teams.primaryChannel.messages.replies_delta
parameters:
- name: team-id
in: path
@@ -8338,24 +9504,64 @@ paths:
schema:
type: string
x-ms-docs-key-type: chatMessage
- - name: chatMessage-id1
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/teams/{team-id}/primaryChannel/messages/microsoft.graph.delta()':
+ get:
+ tags:
+ - teams.Functions
+ summary: Invoke function delta
+ operationId: teams.primaryChannel.messages_delta
+ parameters:
+ - name: team-id
in: path
- description: 'key: id of chatMessage'
+ description: 'key: id of team'
required: true
schema:
type: string
- x-ms-docs-key-type: chatMessage
- - name: If-Match
- in: header
- description: ETag
+ x-ms-docs-key-type: team
+ responses:
+ '200':
+ description: Success
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: function
+ '/teams/{team-id}/primaryChannel/microsoft.graph.completeMigration':
+ post:
+ tags:
+ - teams.Actions
+ summary: Invoke action completeMigration
+ operationId: teams.primaryChannel_completeMigration
+ parameters:
+ - name: team-id
+ in: path
+ description: 'key: id of team'
+ required: true
schema:
type: string
+ x-ms-docs-key-type: team
responses:
'204':
description: Success
default:
$ref: '#/components/responses/error'
- x-ms-docs-operation-type: operation
+ x-ms-docs-operation-type: action
'/teams/{team-id}/primaryChannel/tabs':
get:
tags:
@@ -11853,6 +13059,8 @@ paths:
- id desc
- classification
- classification desc
+ - createdDateTime
+ - createdDateTime desc
- description
- description desc
- displayName
@@ -11888,6 +13096,7 @@ paths:
enum:
- id
- classification
+ - createdDateTime
- description
- displayName
- funSettings
@@ -12014,6 +13223,7 @@ paths:
enum:
- id
- classification
+ - createdDateTime
- description
- displayName
- funSettings
@@ -12568,6 +13778,7 @@ paths:
- topic
- installedApps
- members
+ - messages
- tabs
type: string
- name: $expand
@@ -12583,6 +13794,7 @@ paths:
- '*'
- installedApps
- members
+ - messages
- tabs
type: string
responses:
@@ -12603,6 +13815,11 @@ paths:
parameters:
user-id: $request.path.user-id
userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
+ messages:
+ operationId: users.teamwork.installedApps.Chat.ListMessages
+ parameters:
+ user-id: $request.path.user-id
+ userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
tabs:
operationId: users.teamwork.installedApps.Chat.ListTabs
parameters:
@@ -12650,6 +13867,11 @@ paths:
parameters:
user-id: $request.path.user-id
userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
+ messages:
+ operationId: users.teamwork.installedApps.Chat.ListMessages
+ parameters:
+ user-id: $request.path.user-id
+ userScopeTeamsAppInstallation-id: $request.path.userScopeTeamsAppInstallation-id
tabs:
operationId: users.teamwork.installedApps.Chat.ListTabs
parameters:
@@ -12829,6 +14051,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -12871,26 +14098,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.teamsTab:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: teamsTab
- type: object
- properties:
- configuration:
- $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration'
- displayName:
- type: string
- description: Name of the tab.
- nullable: true
- webUrl:
- type: string
- description: Deep link URL of the tab instance. Read only.
- nullable: true
- teamsApp:
- $ref: '#/components/schemas/microsoft.graph.teamsApp'
- additionalProperties:
- type: object
microsoft.graph.chatMessage:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -12904,10 +14111,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -12938,7 +14151,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -12967,15 +14180,91 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
+ additionalProperties:
+ type: object
+ microsoft.graph.chatMessageHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
+ - title: chatMessageHostedContent
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.teamworkActivityTopic:
+ title: teamworkActivityTopic
+ type: object
+ properties:
+ source:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopicSource'
+ value:
+ type: string
+ description: 'The topic value. If the value of the source property is entityUrl, this must be a Microsoft Graph URL. If the vaule is text, this must be a plain text value.'
+ webUrl:
+ type: string
+ description: The link the user clicks when they select the notification. Optional when source is entityUrl; required when source is text.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.itemBody:
+ title: itemBody
+ type: object
+ properties:
+ content:
+ type: string
+ description: The content of the item.
+ nullable: true
+ contentType:
+ $ref: '#/components/schemas/microsoft.graph.bodyType'
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValuePair:
+ title: keyValuePair
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name for this key-value pair
+ value:
+ type: string
+ description: Value for this key-value pair
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Key value pair for storing custom settings
+ microsoft.graph.teamworkNotificationRecipient:
+ title: teamworkNotificationRecipient
+ type: object
+ additionalProperties:
+ type: object
+ microsoft.graph.teamsTab:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamsTab
+ type: object
+ properties:
+ configuration:
+ $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration'
+ displayName:
+ type: string
+ description: Name of the tab.
+ nullable: true
+ webUrl:
+ type: string
+ description: Deep link URL of the tab instance. Read only.
+ nullable: true
+ teamsApp:
+ $ref: '#/components/schemas/microsoft.graph.teamsApp'
additionalProperties:
type: object
microsoft.graph.team:
@@ -12988,6 +14277,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -13056,6 +14351,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -13189,13 +14490,6 @@ components:
description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.'
additionalProperties:
type: object
- microsoft.graph.chatMessageHostedContent:
- allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
- - title: chatMessageHostedContent
- type: object
- additionalProperties:
- type: object
microsoft.graph.group:
allOf:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
@@ -13219,7 +14513,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -13233,7 +14527,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -13265,7 +14559,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -13274,7 +14568,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -13314,7 +14608,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -13335,29 +14629,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -13628,7 +14922,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -13754,13 +15048,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -13903,28 +15197,6 @@ components:
- meeting
- unknownFutureValue
type: string
- microsoft.graph.teamsTabConfiguration:
- title: teamsTabConfiguration
- type: object
- properties:
- contentUrl:
- type: string
- description: Url used for rendering tab contents in Teams. Required.
- nullable: true
- entityId:
- type: string
- description: Identifier for the entity hosted by the tab provider.
- nullable: true
- removeUrl:
- type: string
- description: Url called by Teams client when a Tab is removed using the Teams Client.
- nullable: true
- websiteUrl:
- type: string
- description: Url for showing tab contents outside of Teams.
- nullable: true
- additionalProperties:
- type: object
microsoft.graph.chatMessageAttachment:
title: chatMessageAttachment
type: object
@@ -13955,16 +15227,18 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.itemBody:
- title: itemBody
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
type: object
properties:
- content:
+ channelId:
type: string
- description: The content of the item.
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
nullable: true
- contentType:
- $ref: '#/components/schemas/microsoft.graph.bodyType'
additionalProperties:
type: object
microsoft.graph.chatMessageImportance:
@@ -14027,7 +15301,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -14036,6 +15310,57 @@ components:
$ref: '#/components/schemas/microsoft.graph.identitySet'
additionalProperties:
type: object
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.teamworkActivityTopicSource:
+ title: teamworkActivityTopicSource
+ enum:
+ - entityUrl
+ - text
+ type: string
+ microsoft.graph.bodyType:
+ title: bodyType
+ enum:
+ - text
+ - html
+ type: string
+ microsoft.graph.teamsTabConfiguration:
+ title: teamsTabConfiguration
+ type: object
+ properties:
+ contentUrl:
+ type: string
+ description: Url used for rendering tab contents in Teams. Required.
+ nullable: true
+ entityId:
+ type: string
+ description: Identifier for the entity hosted by the tab provider.
+ nullable: true
+ removeUrl:
+ type: string
+ description: Url called by Teams client when a Tab is removed using the Teams Client.
+ nullable: true
+ websiteUrl:
+ type: string
+ description: Url for showing tab contents outside of Teams.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.teamFunSettings:
title: teamFunSettings
type: object
@@ -14837,6 +16162,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -14967,11 +16296,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -14981,16 +16311,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -15009,18 +16339,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -15059,15 +16394,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -15079,11 +16414,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -15211,7 +16546,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -15298,7 +16633,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -15360,7 +16695,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -15651,7 +16986,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -15659,7 +16994,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 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'''
+ description: '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
additionalProperties:
@@ -15784,12 +17119,6 @@ components:
nullable: true
additionalProperties:
type: object
- microsoft.graph.bodyType:
- title: bodyType
- enum:
- - text
- - html
- type: string
microsoft.graph.chatMessagePolicyViolationDlpActionTypes:
title: chatMessagePolicyViolationDlpActionTypes
enum:
@@ -15894,7 +17223,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -15911,7 +17240,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -15995,7 +17324,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -16040,7 +17369,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -16142,12 +17471,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -16894,13 +18223,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -17027,7 +18356,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -17074,7 +18403,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 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'''
+ description: '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
name:
@@ -17118,7 +18447,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -17386,7 +18715,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -17458,7 +18787,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -17492,7 +18821,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -17650,7 +18979,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -17660,7 +18989,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -17703,7 +19032,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -18059,7 +19388,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -18358,7 +19687,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -18371,7 +19700,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -18543,13 +19872,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -18819,7 +20148,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -19872,7 +21201,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -19884,13 +21213,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -19924,7 +21253,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -19957,7 +21286,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -20025,7 +21354,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -21025,6 +22354,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -22102,18 +23432,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -22145,7 +23475,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -22167,7 +23497,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -22176,13 +23506,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
diff --git a/openApiDocs/v1.0/Users.Actions.yml b/openApiDocs/v1.0/Users.Actions.yml
index e4c7a72a963..747e0b9fba3 100644
--- a/openApiDocs/v1.0/Users.Actions.yml
+++ b/openApiDocs/v1.0/Users.Actions.yml
@@ -19792,6 +19792,51 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: action
+ '/users/{user-id}/teamwork/microsoft.graph.sendActivityNotification':
+ post:
+ tags:
+ - users.Actions
+ summary: Invoke action sendActivityNotification
+ operationId: users.teamwork_sendActivityNotification
+ parameters:
+ - name: user-id
+ in: path
+ description: 'key: id of user'
+ required: true
+ schema:
+ type: string
+ x-ms-docs-key-type: user
+ requestBody:
+ description: Action parameters
+ content:
+ application/json:
+ schema:
+ type: object
+ properties:
+ topic:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopic'
+ activityType:
+ type: string
+ nullable: true
+ chainId:
+ type: integer
+ format: int64
+ nullable: true
+ previewText:
+ $ref: '#/components/schemas/microsoft.graph.itemBody'
+ templateParameters:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.keyValuePair'
+ additionalProperties:
+ type: object
+ required: true
+ responses:
+ '204':
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: action
/users/microsoft.graph.getAvailableExtensionProperties:
post:
tags:
@@ -20003,15 +20048,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -20023,11 +20068,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -20529,7 +20574,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -20542,7 +20587,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -20647,7 +20692,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -20664,7 +20709,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -20748,7 +20793,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -20793,7 +20838,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -20895,12 +20940,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -21297,7 +21342,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -21465,6 +21510,47 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.teamworkActivityTopic:
+ title: teamworkActivityTopic
+ type: object
+ properties:
+ source:
+ $ref: '#/components/schemas/microsoft.graph.teamworkActivityTopicSource'
+ value:
+ type: string
+ description: 'The topic value. If the value of the source property is entityUrl, this must be a Microsoft Graph URL. If the vaule is text, this must be a plain text value.'
+ webUrl:
+ type: string
+ description: The link the user clicks when they select the notification. Optional when source is entityUrl; required when source is text.
+ nullable: true
+ additionalProperties:
+ type: object
+ microsoft.graph.itemBody:
+ title: itemBody
+ type: object
+ properties:
+ content:
+ type: string
+ description: The content of the item.
+ nullable: true
+ contentType:
+ $ref: '#/components/schemas/microsoft.graph.bodyType'
+ additionalProperties:
+ type: object
+ microsoft.graph.keyValuePair:
+ title: keyValuePair
+ type: object
+ properties:
+ name:
+ type: string
+ description: Name for this key-value pair
+ value:
+ type: string
+ description: Value for this key-value pair
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Key value pair for storing custom settings
microsoft.graph.extensionProperty:
allOf:
- $ref: '#/components/schemas/microsoft.graph.directoryObject'
@@ -21719,7 +21805,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -22221,29 +22307,17 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
type: object
- microsoft.graph.itemBody:
- title: itemBody
- type: object
- properties:
- content:
- type: string
- description: The content of the item.
- nullable: true
- contentType:
- $ref: '#/components/schemas/microsoft.graph.bodyType'
- additionalProperties:
- type: object
microsoft.graph.followupFlag:
title: followupFlag
type: object
@@ -22301,7 +22375,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 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'''
+ description: '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
name:
@@ -22340,7 +22414,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -22588,11 +22662,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -22602,16 +22677,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -22763,7 +22838,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -23179,13 +23254,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -23455,7 +23530,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -23694,6 +23769,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -24046,6 +24127,18 @@ components:
$ref: '#/components/schemas/microsoft.graph.lobbyBypassScope'
additionalProperties:
type: object
+ microsoft.graph.teamworkActivityTopicSource:
+ title: teamworkActivityTopicSource
+ enum:
+ - entityUrl
+ - text
+ type: string
+ microsoft.graph.bodyType:
+ title: bodyType
+ enum:
+ - text
+ - html
+ type: string
odata.error:
required:
- error
@@ -24192,7 +24285,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -24683,12 +24776,6 @@ components:
$ref: '#/components/schemas/microsoft.graph.sizeRange'
additionalProperties:
type: object
- microsoft.graph.bodyType:
- title: bodyType
- enum:
- - text
- - html
- type: string
microsoft.graph.followupFlagStatus:
title: followupFlagStatus
enum:
@@ -25807,7 +25894,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -25868,7 +25955,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -25880,13 +25967,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -25920,7 +26007,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -26070,7 +26157,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -26281,6 +26368,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -26553,6 +26641,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -26616,7 +26710,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -26630,7 +26724,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -26662,7 +26756,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -26671,7 +26765,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -26711,7 +26805,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -26732,29 +26826,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -28159,6 +28253,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -28923,7 +29021,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -28931,7 +29029,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 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'''
+ description: '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
additionalProperties:
@@ -28970,7 +29068,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -28984,7 +29082,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -29067,18 +29165,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -29110,7 +29208,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -29132,7 +29230,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -29141,13 +29239,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -29193,7 +29291,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -29319,13 +29417,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -29370,10 +29468,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -29404,7 +29508,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -29433,15 +29537,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -29495,18 +29602,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -29544,7 +29656,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -29584,7 +29696,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -29775,6 +29887,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -30520,6 +30637,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -30580,7 +30711,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -30591,7 +30722,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -30661,7 +30792,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -30936,7 +31067,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -30946,7 +31077,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -30996,6 +31127,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookChartGridlinesFormat:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Users.Functions.yml b/openApiDocs/v1.0/Users.Functions.yml
index 9bd39a72039..f67b35d9aca 100644
--- a/openApiDocs/v1.0/Users.Functions.yml
+++ b/openApiDocs/v1.0/Users.Functions.yml
@@ -5799,7 +5799,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -5923,7 +5923,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -6334,7 +6334,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -6347,7 +6347,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -6488,7 +6488,7 @@ components:
lastAccessedTime:
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 notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
links:
@@ -6633,7 +6633,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -6650,7 +6650,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -6734,7 +6734,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -6779,7 +6779,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -6881,12 +6881,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -7223,13 +7223,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -7376,7 +7376,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -7423,7 +7423,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 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'''
+ description: '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
name:
@@ -7451,15 +7451,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -7471,11 +7471,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -7882,7 +7882,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -8130,11 +8130,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -8144,16 +8145,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -8501,13 +8502,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -8777,7 +8778,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -9012,6 +9013,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -10855,7 +10862,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -10916,7 +10923,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -10928,13 +10935,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -10968,7 +10975,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -11106,7 +11113,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -11140,7 +11147,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -11342,6 +11349,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -11614,6 +11622,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -11677,7 +11691,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -11691,7 +11705,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -11723,7 +11737,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -11732,7 +11746,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -11772,7 +11786,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -11793,29 +11807,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -13034,6 +13048,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -13798,7 +13816,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -13806,7 +13824,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 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'''
+ description: '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
additionalProperties:
@@ -13845,7 +13863,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -13913,7 +13931,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -13998,18 +14016,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -14041,7 +14059,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -14063,7 +14081,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -14072,13 +14090,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -14132,7 +14150,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -14258,13 +14276,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -14309,10 +14327,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -14343,7 +14367,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -14372,15 +14396,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -14434,18 +14461,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -14483,7 +14515,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -14523,7 +14555,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -14714,6 +14746,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -15405,6 +15442,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -15465,7 +15516,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -15476,7 +15527,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -15546,7 +15597,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -15803,7 +15854,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -15813,7 +15864,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -15863,6 +15914,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookChartGridlinesFormat:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/openApiDocs/v1.0/Users.yml b/openApiDocs/v1.0/Users.yml
index b14da2fd69f..ba6f711b39d 100644
--- a/openApiDocs/v1.0/Users.yml
+++ b/openApiDocs/v1.0/Users.yml
@@ -5455,7 +5455,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.assignedLicense'
- description: The licenses that are assigned to the user. Returned only on $select. Not nullable.
+ description: The licenses that are assigned to the user. Not nullable. Supports $filter.
assignedPlans:
type: array
items:
@@ -5472,7 +5472,7 @@ components:
nullable: true
companyName:
type: string
- description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
+ description: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Returned only on $select.
nullable: true
consentProvidedForMinor:
type: string
@@ -5556,7 +5556,7 @@ components:
lastPasswordChangeDateTime:
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 time when this Azure AD user last changed their password. 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'' Returned only on $select. Read-only.'
+ description: 'The time when this Azure AD user last changed their password. 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 Returned only on $select. Read-only.'
format: date-time
nullable: true
legalAgeGroupClassification:
@@ -5601,7 +5601,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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''. Returned only on $select. Read-only.'
+ description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. 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. Returned only on $select. Read-only.'
format: date-time
nullable: true
onPremisesProvisioningErrors:
@@ -5703,12 +5703,12 @@ components:
birthday:
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 birthday of the user. 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'' Returned only on $select.'
+ description: 'The birthday of the user. 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 Returned only on $select.'
format: date-time
hireDate:
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 hire date of the user. 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''. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
+ description: 'The hire date of the user. 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. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.'
format: date-time
interests:
type: array
@@ -6225,7 +6225,7 @@ components:
assignedDateTime:
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 at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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'''
+ description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. 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
capabilityStatus:
@@ -6473,11 +6473,12 @@ components:
appRoleId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. Does not support $filter.'
+ description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.'
format: uuid
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 time when the app role assignment was 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. Read-only.'
format: date-time
nullable: true
principalDisplayName:
@@ -6487,16 +6488,16 @@ components:
principalId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
type: string
- description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. Does not support $filter.'
+ description: 'The unique identifier (id) for the user, group or service principal being granted the app role. Required on create.'
format: uuid
nullable: true
principalType:
type: string
- description: 'The type of the assigned principal. This can either be ''User'', ''Group'' or ''ServicePrincipal''. Read-only. Does not support $filter.'
+ description: 'The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only.'
nullable: true
resourceDisplayName:
type: string
- description: The display name of the resource app's service principal to which the assignment is made. Does not support $filter.
+ description: The display name of the resource app's service principal to which the assignment is made.
nullable: true
resourceId:
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
@@ -6536,15 +6537,15 @@ components:
description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.'
canEdit:
type: boolean
- description: 'True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
canShare:
type: boolean
- description: 'True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
+ description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.'
nullable: true
canViewPrivateItems:
type: boolean
- description: 'True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
+ description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.'
nullable: true
changeKey:
type: string
@@ -6556,11 +6557,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType'
hexColor:
type: string
- description: 'The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
+ description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.'
nullable: true
isDefaultCalendar:
type: boolean
- description: 'True if this is the default calendar where new events are created by default, false otherwise.'
+ description: 'true if this is the default calendar where new events are created by default, false otherwise.'
nullable: true
isRemovable:
type: boolean
@@ -6715,7 +6716,7 @@ components:
originalStart:
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 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'''
+ description: '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
originalStartTimeZone:
@@ -6839,7 +6840,7 @@ components:
birthday:
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 contact''s birthday. 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'''
+ description: 'The contact''s birthday. 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
businessAddress:
@@ -7138,7 +7139,7 @@ components:
receivedDateTime:
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 message was received. The date and time information uses 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''.'
+ description: 'The date and time the message was received. The date and time information uses 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
replyTo:
@@ -7151,7 +7152,7 @@ components:
sentDateTime:
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 message was sent. The date and time information uses 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''.'
+ description: 'The date and time the message was sent. The date and time information uses 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
subject:
@@ -7410,13 +7411,13 @@ 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: 'The expiration date time of the acceptance. 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'''
+ description: 'The expiration date time of the acceptance. 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
recordedDateTime:
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 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'''
+ description: '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
state:
@@ -7686,7 +7687,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
- description: Zero or more policys already applied on the registered app when it last synchronized with management service.
+ description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
intendedPolicies:
type: array
items:
@@ -7967,6 +7968,12 @@ components:
type: string
description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory.
nullable: true
+ 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 at which the team was created.
+ format: date-time
+ nullable: true
description:
type: string
description: An optional description for the team.
@@ -8114,7 +8121,7 @@ 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 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'''
+ description: '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
lastModifiedBy:
@@ -8122,7 +8129,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 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'''
+ description: '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
additionalProperties:
@@ -8401,13 +8408,13 @@ 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 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'''
+ description: '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
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 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'''
+ description: '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
additionalProperties:
@@ -8504,7 +8511,7 @@ components:
time:
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 that the response was returned. It uses 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'''
+ description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
additionalProperties:
@@ -8551,7 +8558,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 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'''
+ description: '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
name:
@@ -9671,7 +9678,7 @@ 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: 'Read-only. Date and time at which the plan 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 would look like this: ''2014-01-01T00:00:00Z'''
+ description: 'Read-only. Date and time at which the plan 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
owner:
@@ -9732,7 +9739,7 @@ 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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
conversationThreadId:
@@ -9744,13 +9751,13 @@ 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: '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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
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 would look like this: ''2014-01-01T00:00:00Z'''
+ 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'
format: date-time
nullable: true
hasDescription:
@@ -9784,7 +9791,7 @@ components:
startDateTime:
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 starts. 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'''
+ description: 'Date and time at which the task starts. 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
title:
@@ -9909,7 +9916,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.onenoteOperationError'
percentComplete:
type: string
- description: The operation percent complete if the operation is still in running status
+ description: The operation percent complete if the operation is still in running status.
nullable: true
resourceId:
type: string
@@ -9943,7 +9950,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 when the page was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
level:
@@ -10232,6 +10239,7 @@ 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 timestamp when this key was registered to the user.
format: date-time
nullable: true
displayName:
@@ -10504,6 +10512,12 @@ components:
- title: channel
type: object
properties:
+ 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. Timestamp at which the channel was created.
+ format: date-time
+ nullable: true
description:
type: string
description: Optional textual description for the channel.
@@ -10567,7 +10581,7 @@ 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: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
description:
@@ -10581,7 +10595,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: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group 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. Returned by default. Read-only.'
format: date-time
nullable: true
groupTypes:
@@ -10613,7 +10627,7 @@ components:
nullable: true
membershipRuleProcessingState:
type: string
- description: Indicates whether the dynamic membership processing is on or paused. Possible values are 'On' or 'Paused'. Returned by default.
+ description: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default.
nullable: true
onPremisesDomainName:
type: string
@@ -10622,7 +10636,7 @@ components:
onPremisesLastSyncDateTime:
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: 'Indicates the last time at which the group was synced with the on-premises directory.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. Supports $filter.'
+ description: 'Indicates the last time at which the group was synced with the on-premises directory.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. Returned by default. Read-only. Supports $filter.'
format: date-time
nullable: true
onPremisesNetBiosName:
@@ -10662,7 +10676,7 @@ components:
renewedDateTime:
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 group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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.'
+ description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. 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. Returned by default. Read-only.'
format: date-time
nullable: true
securityEnabled:
@@ -10683,29 +10697,29 @@ components:
nullable: true
allowExternalSenders:
type: boolean
- description: Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
autoSubscribeNewMembers:
type: boolean
- description: Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromAddressLists:
type: boolean
- description: 'True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
hideFromOutlookClients:
type: boolean
- description: 'True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select.'
+ description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
isSubscribedByMail:
type: boolean
- description: Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
nullable: true
unseenCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select.
+ description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).'
format: int32
nullable: true
isArchived:
@@ -11980,6 +11994,10 @@ components:
type: string
description: 'The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol. Optional. Read more about how Outlook resources use lifecycle notifications.'
nullable: true
+ notificationQueryOptions:
+ type: string
+ description: 'OData Query Options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property eg when the print job is completed, when a print job resource isFetchable property value becomes true etc.'
+ nullable: true
notificationUrl:
type: string
description: The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required.
@@ -12752,7 +12770,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 when the notebook was last modified. The timestamp 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''. Read-only.'
+ description: 'The date and time when the notebook was last modified. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -12820,7 +12838,7 @@ 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 page was created. The timestamp 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''. Read-only.'
+ description: 'The date and time when the page was created. The timestamp 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. Read-only.'
format: date-time
nullable: true
additionalProperties:
@@ -12926,18 +12944,18 @@ components:
approximateLastSignInDateTime:
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 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''. Read-only.'
+ description: '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. Read-only.'
format: date-time
nullable: true
complianceExpirationDateTime:
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 timestamp when the device is no longer deemed compliant. 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''. Read-only.'
+ description: 'The timestamp when the device is no longer deemed compliant. 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. Read-only.'
format: date-time
nullable: true
deviceId:
type: string
- description: Unique identifier set by Azure Device Registration Service at the time of registration.
+ description: Identifier set by Azure Device Registration Service at the time of registration.
nullable: true
deviceMetadata:
type: string
@@ -12969,7 +12987,7 @@ components:
onPremisesLastSyncDateTime:
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 time at which the object was synced with the on-premises directory. 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'' Read-only.'
+ description: 'The last time at which the object was synced with the on-premises directory. 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 Read-only.'
format: date-time
nullable: true
onPremisesSyncEnabled:
@@ -12991,7 +13009,7 @@ components:
description: For internal use only. Not nullable.
profileType:
type: string
- description: The profile type of the device. Possible values:RegisteredDevice (default)SecureVMPrinterSharedIoT
+ description: 'The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.'
nullable: true
systemLabels:
type: array
@@ -13000,13 +13018,13 @@ components:
description: List of labels applied to the device by the system.
trustType:
type: string
- description: 'Type of trust for the joined device. Read-only. Possible values: Workplace - indicates bring your own personal devicesAzureAd - Cloud only joined devicesServerAd - on-premises domain joined devices joined to Azure AD. For more details, see Introduction to device management in Azure Active Directory'
+ description: 'Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory'
nullable: true
memberOf:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.directoryObject'
- description: 'Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
+ description: 'Groups that this device is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable.'
registeredOwners:
type: array
items:
@@ -13060,7 +13078,7 @@ components:
recipientActionDateTime:
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 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'''
+ description: '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
recipientActionMessage:
@@ -13186,13 +13204,13 @@ components:
endDateTime:
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 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'''
+ description: '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
startDateTime:
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 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'''
+ description: '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
timeOffReasonId:
@@ -13237,10 +13255,16 @@ components:
description: Attached files. Attachments are currently read-only – sending attachments is not supported.
body:
$ref: '#/components/schemas/microsoft.graph.itemBody'
+ channelIdentity:
+ $ref: '#/components/schemas/microsoft.graph.channelIdentity'
+ chatId:
+ type: string
+ description: 'If the message was sent in a chat, represents the identity of the chat.'
+ nullable: true
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. Timestamp of when the chat message was created.
+ description: Timestamp of when the chat message was created.
format: date-time
nullable: true
deletedDateTime:
@@ -13271,7 +13295,7 @@ components:
nullable: true
locale:
type: string
- description: Locale of the chat message set by the client.
+ description: Locale of the chat message set by the client. Always set to en-us.
mentions:
type: array
items:
@@ -13300,15 +13324,18 @@ components:
nullable: true
webUrl:
type: string
+ description: Read-only. Link to the message in Microsoft Teams.
nullable: true
hostedContents:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent'
+ description: 'Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.'
replies:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: Replies for a specified message.
additionalProperties:
type: object
microsoft.graph.teamsTab:
@@ -13362,18 +13389,23 @@ components:
properties:
clientAppId:
type: string
+ description: ID of the service principal of the Azure AD app that has been granted access. Read-only.
nullable: true
clientId:
type: string
+ description: ID of the Azure AD app that has been granted access. Read-only.
nullable: true
permission:
type: string
+ description: The name of the permission. Read-only.
nullable: true
permissionType:
type: string
+ description: 'The type of permission. Possible values are: Application,Delegated. Read-only.'
nullable: true
resourceAppId:
type: string
+ description: ID of the Azure AD app that is hosting the resource. Read-only.
nullable: true
additionalProperties:
type: object
@@ -13411,7 +13443,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -13451,7 +13483,7 @@ components:
lastDeliveredDateTime:
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 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'''
+ description: '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
preview:
type: string
@@ -13642,6 +13674,11 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.conversationMember'
description: A collection of all the members in the chat. Nullable.
+ messages:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.chatMessage'
+ description: A collection of all the messages in the chat. Nullable.
tabs:
type: array
items:
@@ -14360,6 +14397,20 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.channelIdentity:
+ title: channelIdentity
+ type: object
+ properties:
+ channelId:
+ type: string
+ description: The identity of the channel in which the message was posted.
+ nullable: true
+ teamId:
+ type: string
+ description: The identity of the team in which the message was posted.
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.chatMessageImportance:
title: chatMessageImportance
enum:
@@ -14420,7 +14471,7 @@ 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 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'''
+ description: '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
reactionType:
type: string
@@ -14431,7 +14482,7 @@ components:
type: object
microsoft.graph.chatMessageHostedContent:
allOf:
- - $ref: '#/components/schemas/microsoft.graph.entity'
+ - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent'
- title: chatMessageHostedContent
type: object
additionalProperties:
@@ -14501,7 +14552,7 @@ components:
receivedDateTime:
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: 'Specifies when the post was received. The DateTimeOffset 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'''
+ description: 'Specifies when the post was received. The DateTimeOffset 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
sender:
$ref: '#/components/schemas/microsoft.graph.recipient'
@@ -14783,7 +14834,7 @@ components:
endDateTime:
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 end date and time for the shiftActivity. 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''. Required.'
+ description: 'The end date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
isPaid:
@@ -14793,7 +14844,7 @@ components:
startDateTime:
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 start date and time for the shiftActivity. 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''. Required.'
+ description: 'The start date and time for the shiftActivity. 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. Required.'
format: date-time
nullable: true
theme:
@@ -14843,6 +14894,23 @@ components:
- allowOverrideWithoutJustification
- allowOverrideWithJustification
type: string
+ microsoft.graph.teamworkHostedContent:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: teamworkHostedContent
+ type: object
+ properties:
+ contentBytes:
+ type: string
+ description: Write only. Bytes for the hosted content (such as images).
+ format: base64url
+ nullable: true
+ contentType:
+ type: string
+ description: 'Write only. Content type, such as image/png, image/jpg.'
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.workbookFilter:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
diff --git a/profiles/Applications/crawl-log-v1.0-beta.json b/profiles/Applications/crawl-log-v1.0-beta.json
index 9415d44f186..de9e579d8b9 100644
--- a/profiles/Applications/crawl-log-v1.0-beta.json
+++ b/profiles/Applications/crawl-log-v1.0-beta.json
@@ -2,756 +2,752 @@
"resources": [],
"operations": {
"/applications": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/connectorGroup": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/connectorGroup/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/createdOnBehalfOf": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/createdOnBehalfOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/extensionProperties": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/extensionProperties/{extensionProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/homeRealmDiscoveryPolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/logo": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.addKey": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.addPassword": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.removeKey": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.removePassword": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/owners": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.pause": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.provisionOnDemand": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.restart": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.validateCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/microsoft.graph.discover": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.filterOperators()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.functions()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.parseExpression": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/jobs/microsoft.graph.validateCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/microsoft.graph.acquireAccessToken": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/microsoft.graph.Ping()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/microsoft.graph.discover": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.filterOperators()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.functions()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.parseExpression": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/tokenIssuancePolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/{application-id}/tokenLifetimePolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applications/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applicationTemplates": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applicationTemplates/{applicationTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/applicationTemplates/{applicationTemplate-id}/microsoft.graph.instantiate": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/groups/{group-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/agents": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/{connector-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/{connector-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/{connector-id}/memberOf/{connectorGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/applications": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/applications/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/members": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/members/{connector-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id1}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/createdObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/endpoints": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/licenseDetails": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
- },
- "/servicePrincipals/{servicePrincipal-id}/microsoft.graph.addTokenSigningCertificate": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.addTokenSigningCertificate": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.createPasswordSingleSignOnCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.deletePasswordSingleSignOnCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.getPasswordSingleSignOnCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.updatePasswordSingleSignOnCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/ownedObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/owners": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.pause": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.provisionOnDemand": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.restart": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/microsoft.graph.validateCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/microsoft.graph.discover": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.filterOperators()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.functions()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/microsoft.graph.parseExpression": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/microsoft.graph.validateCredentials": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/microsoft.graph.acquireAccessToken": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/microsoft.graph.Ping()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/microsoft.graph.discover": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.filterOperators()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.functions()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/microsoft.graph.parseExpression": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/servicePrincipals/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/users/{user-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
},
"/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Applications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Applications.yml"
}
}
}
diff --git a/profiles/Applications/crawl-log-v1.0.json b/profiles/Applications/crawl-log-v1.0.json
index 6f6f300708c..d49a72b4d69 100644
--- a/profiles/Applications/crawl-log-v1.0.json
+++ b/profiles/Applications/crawl-log-v1.0.json
@@ -2,128 +2,116 @@
"resources": [],
"operations": {
"/applications": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/createdOnBehalfOf": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/createdOnBehalfOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/extensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/extensionProperties/{extensionProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/homeRealmDiscoveryPolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/logo": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.addKey": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.addPassword": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.removeKey": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.removePassword": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/owners": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/tokenIssuancePolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/{application-id}/tokenLifetimePolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applications/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
- },
- "/applicationTemplates": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
- },
- "/applicationTemplates/{applicationTemplate-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
- },
- "/applicationTemplates/{applicationTemplate-id}/microsoft.graph.instantiate": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/applicationTemplates": {
"apiVersion": "v1.0",
@@ -138,192 +126,192 @@
"originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/groups/{group-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/createdObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/createdObjects/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/endpoints": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/memberOf": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.addKey": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.addPassword": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.removeKey": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.removePassword": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/ownedObjects": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/ownedObjects/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/owners": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/servicePrincipals/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/users/{user-id}/appRoleAssignments": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
},
"/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Applications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Applications.yml"
}
}
}
diff --git a/profiles/Applications/readme.md b/profiles/Applications/readme.md
index 8cd0e9b406e..31e317e3d54 100644
--- a/profiles/Applications/readme.md
+++ b/profiles/Applications/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Bookings/crawl-log-v1.0-beta.json b/profiles/Bookings/crawl-log-v1.0-beta.json
index b22dc14946d..feff81b536d 100644
--- a/profiles/Bookings/crawl-log-v1.0-beta.json
+++ b/profiles/Bookings/crawl-log-v1.0-beta.json
@@ -2,76 +2,76 @@
"resources": [],
"operations": {
"/bookingBusinesses": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/appointments": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/calendarView": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/customers": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/services": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/staffMembers": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingCurrencies": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
},
"/bookingCurrencies/{bookingCurrency-id}": {
- "originalLocation": "/openApiDocs/beta/Bookings.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Bookings.yml"
}
}
}
diff --git a/profiles/Calendar/crawl-log-v1.0-beta.json b/profiles/Calendar/crawl-log-v1.0-beta.json
index 75c151e23c6..6f09a93166c 100644
--- a/profiles/Calendar/crawl-log-v1.0-beta.json
+++ b/profiles/Calendar/crawl-log-v1.0-beta.json
@@ -2,1020 +2,1020 @@
"resources": [],
"operations": {
"/groups/{group-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/places": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/places/{place-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Calendar.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Calendar.yml"
}
}
}
diff --git a/profiles/Calendar/crawl-log-v1.0.json b/profiles/Calendar/crawl-log-v1.0.json
index 56945d6b955..76368e99c8e 100644
--- a/profiles/Calendar/crawl-log-v1.0.json
+++ b/profiles/Calendar/crawl-log-v1.0.json
@@ -2,924 +2,924 @@
"resources": [],
"operations": {
"/groups/{group-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/groups/{group-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/places": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/places/{place-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendars/{calendar-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/calendarView/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarPermissions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarPermissions/{calendarPermission-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/calendar/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/instances": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
},
"/users/{user-id}/events/{event-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Calendar.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Calendar.yml"
}
}
}
diff --git a/profiles/Calendar/readme.md b/profiles/Calendar/readme.md
index 511ea657284..eeb8ce6061a 100644
--- a/profiles/Calendar/readme.md
+++ b/profiles/Calendar/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/ChangeNotifications/crawl-log-v1.0-beta.json b/profiles/ChangeNotifications/crawl-log-v1.0-beta.json
index 0c052ba6408..8d54b004c56 100644
--- a/profiles/ChangeNotifications/crawl-log-v1.0-beta.json
+++ b/profiles/ChangeNotifications/crawl-log-v1.0-beta.json
@@ -2,12 +2,12 @@
"resources": [],
"operations": {
"/subscriptions": {
- "originalLocation": "/openApiDocs/beta/ChangeNotifications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/ChangeNotifications.yml"
},
"/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/beta/ChangeNotifications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/ChangeNotifications.yml"
}
}
}
diff --git a/profiles/ChangeNotifications/crawl-log-v1.0.json b/profiles/ChangeNotifications/crawl-log-v1.0.json
index 7fd1d943df9..bd1c1841589 100644
--- a/profiles/ChangeNotifications/crawl-log-v1.0.json
+++ b/profiles/ChangeNotifications/crawl-log-v1.0.json
@@ -2,12 +2,12 @@
"resources": [],
"operations": {
"/subscriptions": {
- "originalLocation": "/openApiDocs/v1.0/ChangeNotifications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/ChangeNotifications.yml"
},
"/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/v1.0/ChangeNotifications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/ChangeNotifications.yml"
}
}
}
diff --git a/profiles/ChangeNotifications/readme.md b/profiles/ChangeNotifications/readme.md
index 99582f78cc6..b8fd6407bfc 100644
--- a/profiles/ChangeNotifications/readme.md
+++ b/profiles/ChangeNotifications/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/CloudCommunications/crawl-log-v1.0-beta.json b/profiles/CloudCommunications/crawl-log-v1.0-beta.json
index 9d4b69443b5..60de633281f 100644
--- a/profiles/CloudCommunications/crawl-log-v1.0-beta.json
+++ b/profiles/CloudCommunications/crawl-log-v1.0-beta.json
@@ -2,196 +2,212 @@
"resources": [],
"operations": {
"/communications": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/{segment-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/audioRoutingGroups": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.answer": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.cancelMediaProcessing": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.changeScreenSharingRole": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.keepAlive": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.mute": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.playPrompt": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.record": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.recordResponse": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.reject": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.subscribeToTone": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.transfer": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.unmute": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.updateRecordingStatus": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/operations": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/operations/{commsOperation-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/{participant-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/{participant-id}/microsoft.graph.mute": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/microsoft.graph.invite": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/microsoft.graph.muteAll": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/calls/microsoft.graph.logTeleconferenceDeviceQuality": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/microsoft.graph.getPresencesByUserId": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings/{onlineMeeting-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
+ },
+ "/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings/{onlineMeeting-id}/recording": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/onlineMeetings/microsoft.graph.createOrGet": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/presences": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/communications/presences/{presence-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
+ },
+ "/communications/presences/{presence-id}/microsoft.graph.clearPresence": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
+ },
+ "/communications/presences/{presence-id}/microsoft.graph.setPresence": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings/{onlineMeeting-id}": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
+ },
+ "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
},
"/users/{user-id}/presence": {
- "originalLocation": "/openApiDocs/beta/CloudCommunications.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CloudCommunications.yml"
}
}
}
diff --git a/profiles/CloudCommunications/crawl-log-v1.0.json b/profiles/CloudCommunications/crawl-log-v1.0.json
index 0249f827c9c..8b5f880866b 100644
--- a/profiles/CloudCommunications/crawl-log-v1.0.json
+++ b/profiles/CloudCommunications/crawl-log-v1.0.json
@@ -2,156 +2,156 @@
"resources": [],
"operations": {
"/communications": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/{segment-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.answer": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.cancelMediaProcessing": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.changeScreenSharingRole": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.keepAlive": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.mute": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.playPrompt": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.recordResponse": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.reject": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.subscribeToTone": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.transfer": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.unmute": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/microsoft.graph.updateRecordingStatus": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/operations": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/operations/{commsOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/{participant-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/{participant-id}/microsoft.graph.mute": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/{call-id}/participants/microsoft.graph.invite": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/calls/microsoft.graph.logTeleconferenceDeviceQuality": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/microsoft.graph.getPresencesByUserId": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/onlineMeetings": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/onlineMeetings/{onlineMeeting-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/onlineMeetings/microsoft.graph.createOrGet": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/presences": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/communications/presences/{presence-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/users/{user-id}/onlineMeetings/{onlineMeeting-id}": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
},
"/users/{user-id}/presence": {
- "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CloudCommunications.yml"
}
}
}
diff --git a/profiles/CloudCommunications/definitions/v1.0-beta.md b/profiles/CloudCommunications/definitions/v1.0-beta.md
index 34dbf092b69..f52220ec062 100644
--- a/profiles/CloudCommunications/definitions/v1.0-beta.md
+++ b/profiles/CloudCommunications/definitions/v1.0-beta.md
@@ -45,14 +45,18 @@ profiles:
/communications/onlineMeetings/{onlineMeeting-id}: v1.0-beta
/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording: v1.0-beta
/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport: v1.0-beta
+ /communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport: v1.0-beta
/communications/onlineMeetings/{onlineMeeting-id}/recording: v1.0-beta
/communications/onlineMeetings/microsoft.graph.createOrGet: v1.0-beta
/communications/presences: v1.0-beta
/communications/presences/{presence-id}: v1.0-beta
+ /communications/presences/{presence-id}/microsoft.graph.clearPresence: v1.0-beta
+ /communications/presences/{presence-id}/microsoft.graph.setPresence: v1.0-beta
/users/{user-id}/onlineMeetings: v1.0-beta
/users/{user-id}/onlineMeetings/{onlineMeeting-id}: v1.0-beta
/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording: v1.0-beta
/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport: v1.0-beta
+ /users/{user-id}/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport: v1.0-beta
/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording: v1.0-beta
/users/{user-id}/presence: v1.0-beta
diff --git a/profiles/CloudCommunications/readme.md b/profiles/CloudCommunications/readme.md
index 0804ad91692..21243beacaa 100644
--- a/profiles/CloudCommunications/readme.md
+++ b/profiles/CloudCommunications/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Compliance/crawl-log-v1.0-beta.json b/profiles/Compliance/crawl-log-v1.0-beta.json
index fff1866c9ac..f9f6e1a3bf3 100644
--- a/profiles/Compliance/crawl-log-v1.0-beta.json
+++ b/profiles/Compliance/crawl-log-v1.0-beta.json
@@ -2,292 +2,288 @@
"resources": [],
"operations": {
"/compliance": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.activate": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.release": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.updateIndex": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/microsoft.graph.ediscovery.close": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/microsoft.graph.ediscovery.reopen": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/noncustodialDataSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.Release": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.UpdateIndex": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/operations": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/microsoft.graph.ediscovery.caseExportOperation/microsoft.graph.ediscovery.getDownloadUrl()": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/microsoft.graph.ediscovery.caseExportOperation/microsoft.graph.ediscovery.getDownloadUrl()": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/microsoft.graph.ediscovery.addToReviewSet": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/microsoft.graph.ediscovery.export": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/microsoft.graph.ediscovery.applyTags": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/settings": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/settings/microsoft.graph.ediscovery.resetToDefault": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/microsoft.graph.ediscovery.estimateStatistics": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/microsoft.graph.ediscovery.asHierarchy()": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent/$ref": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
},
"/compliance/ediscovery/cases/{case-id}/tags/microsoft.graph.ediscovery.asHierarchy()": {
- "originalLocation": "/openApiDocs/beta/Compliance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Compliance.yml"
}
}
}
diff --git a/profiles/CrossDeviceExperiences/crawl-log-v1.0-beta.json b/profiles/CrossDeviceExperiences/crawl-log-v1.0-beta.json
index b910fc53177..f03f32465f7 100644
--- a/profiles/CrossDeviceExperiences/crawl-log-v1.0-beta.json
+++ b/profiles/CrossDeviceExperiences/crawl-log-v1.0-beta.json
@@ -2,36 +2,36 @@
"resources": [],
"operations": {
"/users/{user-id}/activities": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/devices": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
},
"/users/{user-id}/devices/{device-id}": {
- "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/CrossDeviceExperiences.yml"
}
}
}
diff --git a/profiles/CrossDeviceExperiences/crawl-log-v1.0.json b/profiles/CrossDeviceExperiences/crawl-log-v1.0.json
index 9c3402afb60..c00e752d5df 100644
--- a/profiles/CrossDeviceExperiences/crawl-log-v1.0.json
+++ b/profiles/CrossDeviceExperiences/crawl-log-v1.0.json
@@ -2,28 +2,28 @@
"resources": [],
"operations": {
"/users/{user-id}/activities": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
},
"/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity/$ref": {
- "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/CrossDeviceExperiences.yml"
}
}
}
diff --git a/profiles/CrossDeviceExperiences/readme.md b/profiles/CrossDeviceExperiences/readme.md
index 36a6c0cf82c..7cc51cf8c5c 100644
--- a/profiles/CrossDeviceExperiences/readme.md
+++ b/profiles/CrossDeviceExperiences/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json
index 8eab4db4735..0637c1c4489 100644
--- a/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json
+++ b/profiles/DeviceManagement.Actions/crawl-log-v1.0-beta.json
@@ -2,1764 +2,1788 @@
"resources": [],
"operations": {
"/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/microsoft.graph.createToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/microsoft.graph.revokeToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/microsoft.graph.createToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/microsoft.graph.revokeToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkSettings/microsoft.graph.completeSignup": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkSettings/microsoft.graph.requestSignupUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkSettings/microsoft.graph.syncApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidForWorkSettings/microsoft.graph.unbind": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.approveApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.completeSignup": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.createGooglePlayWebToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.requestSignupUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.setAndroidDeviceOwnerFullyManagedEnrollmentState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.syncApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.unbind": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/applePushNotificationCertificate/microsoft.graph.generateApplePushNotificationCertificateSigningRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/microsoft.graph.setPriority": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/assignmentFilters/microsoft.graph.enable": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/assignmentFilters/microsoft.graph.validateFilter": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/chromeOSOnboardingSettings/microsoft.graph.connect": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/comanagedDevices/microsoft.graph.executeAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/microsoft.graph.consentToDataSharing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/microsoft.graph.setDefaultProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/microsoft.graph.updateDeviceProfileAssignment": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/microsoft.graph.importAppleDeviceIdentityList": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.generateEncryptionPublicKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.shareForSchoolDataSyncService": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.syncWithAppleDeviceEnrollmentProgram": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.unshareForSchoolDataSyncService": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.uploadDepToken": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/microsoft.graph.executeAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.scheduleActionsForRules": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/microsoft.graph.getDevicesScheduledToRetire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/microsoft.graph.refreshDeviceComplianceReportSummarization": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/microsoft.graph.setScheduledRetireState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/microsoft.graph.validateComplianceScript": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.assignedAccessMultiModeProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.windowsPrivacyAccessControls": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.windowsUpdateForBusinessConfiguration/microsoft.graph.extendFeatureUpdatesPause": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/microsoft.graph.windowsUpdateForBusinessConfiguration/microsoft.graph.extendQualityUpdatesPause": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.assignedAccessMultiModeProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.windowsPrivacyAccessControls": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.windowsUpdateForBusinessConfiguration/microsoft.graph.extendFeatureUpdatesPause": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.windowsUpdateForBusinessConfiguration/microsoft.graph.extendQualityUpdatesPause": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/microsoft.graph.getTargetedUsersAndDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.setPriority": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.getGlobalScriptHighestAvailableVersion": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.updateGlobalScript": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceHealthScripts/microsoft.graph.enableGlobalScripts": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceManagementScripts/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/microsoft.graph.sync": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/microsoft.graph.updateDefinitionValues": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyMigrationReports/microsoft.graph.createMigrationReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/microsoft.graph.addLanguageFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/microsoft.graph.remove": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/microsoft.graph.removeLanguageFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/microsoft.graph.updateLanguageFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/microsoft.graph.uploadNewVersion": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/importedDeviceIdentities/microsoft.graph.importDeviceIdentityList": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/importedDeviceIdentities/microsoft.graph.searchExistingIdentities": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/importedWindowsAutopilotDeviceIdentities/microsoft.graph.import": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.createCopy": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.migrateToTemplate": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.updateSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/microsoft.graph.executeAction": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoft.graph.enableAndroidDeviceAdministratorEnrollment": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoft.graph.enableLegacyPcManagement": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoft.graph.enableUnlicensedAdminstrators": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoft.graph.getAssignmentFiltersStatusDetails": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.createServerLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.getHealthMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/microsoft.graph.getHealthMetricTimeSeries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/microsoft.graph.sendTestMessage": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.beginOnboarding": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.disconnect": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getActiveMalwareReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getActiveMalwareSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getAppsInstallSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getAppStatusOverviewReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getCachedReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getCertificatesReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getCompliancePolicyNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getCompliancePolicyNonComplianceSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getComplianceSettingNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationPoliciesReportForDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationPolicyDevicesReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationPolicyDeviceSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationPolicyNonComplianceSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationSettingDetailsReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationSettingNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getConfigurationSettingsReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getDeviceInstallStatusReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getDeviceNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getFailedMobileAppsReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getFailedMobileAppsSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getHistoricalReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getMalwareSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getPolicyNonComplianceMetadata": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getPolicyNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getPolicyNonComplianceSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getReportFilters": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getSettingNonComplianceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getUnhealthyDefenderAgentsReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getUnhealthyFirewallReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getUnhealthyFirewallSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getUserInstallStatusReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertSummaryReport": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getWindowsUpdateAlertsPerPolicyPerDeviceReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/reports/microsoft.graph.getWindowsUpdateAlertSummaryReport": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.getRoleScopeTagsById": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/roleScopeTags/{roleScopeTag-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/roleScopeTags/microsoft.graph.getRoleScopeTagsById": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/microsoft.graph.createInstance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/microsoft.graph.createInstance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/microsoft.graph.importOffice365DeviceConfigurationPolicies": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/templates/microsoft.graph.importOffice365DeviceConfigurationPolicies": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/microsoft.graph.reprovision": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/microsoft.graph.runHealthChecks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/microsoft.graph.updateAdDomainPassword": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignResourceAccountToDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignUserToDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignResourceAccountFromDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/microsoft.graph.deleteDevices": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignResourceAccountToDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.assignUserToDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignResourceAccountFromDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
+ },
+ "/deviceManagement/windowsAutopilotDeviceIdentities/microsoft.graph.deleteDevices": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsAutopilotSettings/microsoft.graph.sync": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
},
"/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Actions.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Actions/crawl-log-v1.0.json b/profiles/DeviceManagement.Actions/crawl-log-v1.0.json
index c0de4a7172b..e30373d23f0 100644
--- a/profiles/DeviceManagement.Actions/crawl-log-v1.0.json
+++ b/profiles/DeviceManagement.Actions/crawl-log-v1.0.json
@@ -2,112 +2,112 @@
"resources": [],
"operations": {
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/microsoft.graph.scheduleActionsForRules": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.setPriority": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/microsoft.graph.sync": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/microsoft.graph.sendTestMessage": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.beginOnboarding": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/microsoft.graph.disconnect": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Actions.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md b/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md
index deca906f524..ca8175c2063 100644
--- a/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md
+++ b/profiles/DeviceManagement.Actions/definitions/v1.0-beta.md
@@ -24,7 +24,9 @@ profiles:
/deviceManagement/androidManagedStoreAccountEnterpriseSettings/microsoft.graph.unbind: v1.0-beta
/deviceManagement/applePushNotificationCertificate/microsoft.graph.generateApplePushNotificationCertificateSigningRequest: v1.0-beta
/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/microsoft.graph.setPriority: v1.0-beta
+ /deviceManagement/assignmentFilters/microsoft.graph.enable: v1.0-beta
/deviceManagement/assignmentFilters/microsoft.graph.validateFilter: v1.0-beta
+ /deviceManagement/chromeOSOnboardingSettings/microsoft.graph.connect: v1.0-beta
? /deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl
: v1.0-beta
/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock: v1.0-beta
@@ -655,6 +657,8 @@ profiles:
/deviceManagement/reports/microsoft.graph.getUnhealthyFirewallReport: v1.0-beta
/deviceManagement/reports/microsoft.graph.getUnhealthyFirewallSummaryReport: v1.0-beta
/deviceManagement/reports/microsoft.graph.getUserInstallStatusReport: v1.0-beta
+ /deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport: v1.0-beta
+ /deviceManagement/reports/microsoft.graph.getWindowsQualityUpdateAlertSummaryReport: v1.0-beta
/deviceManagement/reports/microsoft.graph.getWindowsUpdateAlertsPerPolicyPerDeviceReport: v1.0-beta
/deviceManagement/reports/microsoft.graph.getWindowsUpdateAlertSummaryReport: v1.0-beta
/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/microsoft.graph.assign: v1.0-beta
@@ -685,6 +689,8 @@ profiles:
: v1.0-beta
? /deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties
: v1.0-beta
+ ? /deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/microsoft.graph.deleteDevices
+ : v1.0-beta
/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/microsoft.graph.assign: v1.0-beta
/deviceManagement/windowsAutopilotDeploymentProfiles/microsoft.graph.hasPayloadLinks: v1.0-beta
/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/microsoft.graph.assign: v1.0-beta
@@ -697,6 +703,7 @@ profiles:
: v1.0-beta
/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.unassignUserFromDevice: v1.0-beta
/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/microsoft.graph.updateDeviceProperties: v1.0-beta
+ /deviceManagement/windowsAutopilotDeviceIdentities/microsoft.graph.deleteDevices: v1.0-beta
/deviceManagement/windowsAutopilotSettings/microsoft.graph.sync: v1.0-beta
/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/microsoft.graph.assign: v1.0-beta
/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/microsoft.graph.assign: v1.0-beta
diff --git a/profiles/DeviceManagement.Actions/readme.md b/profiles/DeviceManagement.Actions/readme.md
index 26112dd0372..f376872cdfe 100644
--- a/profiles/DeviceManagement.Actions/readme.md
+++ b/profiles/DeviceManagement.Actions/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DeviceManagement.Administration/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Administration/crawl-log-v1.0-beta.json
index fe8180fe100..9432e50171c 100644
--- a/profiles/DeviceManagement.Administration/crawl-log-v1.0-beta.json
+++ b/profiles/DeviceManagement.Administration/crawl-log-v1.0-beta.json
@@ -2,420 +2,420 @@
"resources": [],
"operations": {
"/deviceManagement/applePushNotificationCertificate": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/auditEvents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/auditEvents/{auditEvent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/cartToClassAssociations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/comanagementEligibleDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/complianceManagementPartners": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceConfigurationRestrictedAppsViolations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceManagementPartners": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/domainJoinConnectors": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeConnectors": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeOnPremisesPolicies": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeOnPremisesPolicy": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeOnPremisesPolicy/conditionalAccessSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitionFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/definitionFile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/definitionFile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyObjectFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/intuneBrandingProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/iosUpdateStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/mobileThreatDefenseConnectors": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/ndesConnectors": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/ndesConnectors/{ndesConnector-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/remoteAssistancePartners": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/resourceOperations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/resourceOperations/{resourceOperation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleScopeTags": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleScopeTags/{roleScopeTag-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/telecomExpenseManagementPartners": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/userPfxCertificates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
},
"/deviceManagement/userPfxCertificates/{userPFXCertificate-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Administration.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Administration/crawl-log-v1.0.json b/profiles/DeviceManagement.Administration/crawl-log-v1.0.json
index 7aa324352c8..1fb7c523c53 100644
--- a/profiles/DeviceManagement.Administration/crawl-log-v1.0.json
+++ b/profiles/DeviceManagement.Administration/crawl-log-v1.0.json
@@ -2,136 +2,136 @@
"resources": [],
"operations": {
"/deviceManagement/applePushNotificationCertificate": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/complianceManagementPartners": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceManagementPartners": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeConnectors": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/iosUpdateStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/mobileThreatDefenseConnectors": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/remoteAssistancePartners": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/resourceOperations": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/resourceOperations/{resourceOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/telecomExpenseManagementPartners": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions/$ref": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
},
"/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Administration.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Administration/readme.md b/profiles/DeviceManagement.Administration/readme.md
index b638ae31e5a..216b5024e5d 100644
--- a/profiles/DeviceManagement.Administration/readme.md
+++ b/profiles/DeviceManagement.Administration/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json
index d7fceab3157..983eb88b73f 100644
--- a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json
+++ b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0-beta.json
@@ -2,852 +2,900 @@
"resources": [],
"operations": {
"/deviceManagement/androidDeviceOwnerEnrollmentProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/androidForWorkEnrollmentProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/appleUserInitiatedEnrollmentProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/autopilotEvents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/conditionalAccessSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/importedDeviceIdentities": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/importedWindowsAutopilotDeviceIdentities": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsAutopilotSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/deviceUpdateStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/deviceUpdateStates/{windowsUpdateState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/microsoft.graph.roleScheduleInstances(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/microsoft.graph.roleSchedules(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/directory/roleAssignmentApprovals": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/directory/roleAssignmentApprovals/{approval-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/directory/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentScheduleInstances": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentSchedules": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityScheduleInstances": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilitySchedules": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/directory/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/microsoft.graph.roleScheduleInstances(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/microsoft.graph.roleSchedules(directoryScopeId='{directoryScopeId}',appScopeId='{appScopeId}',principalId='{principalId}',roleDefinitionId='{roleDefinitionId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/microsoft.graph.importResourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/entitlementManagement/roleAssignmentApprovals": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement/entitlementManagement/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/appScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/targetSchedule/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentScheduleInstances": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentSchedules": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleAssignmentSchedules/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/appScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/directoryScope/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/principal/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/roleDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/{unifiedRoleEligibilityRequest-id}/targetSchedule/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityRequests/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityScheduleInstances": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilitySchedules": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
},
"/roleManagement/entitlementManagement/roleEligibilitySchedules/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Enrolment.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json
index 954ee081ccb..720bd1f7eae 100644
--- a/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json
+++ b/profiles/DeviceManagement.Enrolment/crawl-log-v1.0.json
@@ -2,24 +2,28 @@
"resources": [],
"operations": {
"/deviceManagement/conditionalAccessSettings": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
},
"/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
+ },
+ "/roleManagement": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Enrolment.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md b/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md
index c85c25e8825..c2d2335ac30 100644
--- a/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md
+++ b/profiles/DeviceManagement.Enrolment/definitions/v1.0-beta.md
@@ -41,6 +41,8 @@ profiles:
/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}: v1.0-beta
/deviceManagement/importedWindowsAutopilotDeviceIdentities: v1.0-beta
/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}: v1.0-beta
/deviceManagement/windowsAutopilotDeploymentProfiles: v1.0-beta
/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}: v1.0-beta
/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices: v1.0-beta
@@ -107,6 +109,11 @@ profiles:
/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}: v1.0-beta
? /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope
: v1.0-beta
+ /roleManagement/directory/roleAssignmentApprovals: v1.0-beta
+ /roleManagement/directory/roleAssignmentApprovals/{approval-id}: v1.0-beta
+ /roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps: v1.0-beta
+ /roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}: v1.0-beta
+ /roleManagement/directory/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/roleManagement/directory/roleAssignmentRequests: v1.0-beta
/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}: v1.0-beta
/roleManagement/directory/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing: v1.0-beta
@@ -179,6 +186,11 @@ profiles:
: v1.0-beta
? /roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope
: v1.0-beta
+ /roleManagement/entitlementManagement/roleAssignmentApprovals: v1.0-beta
+ /roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}: v1.0-beta
+ /roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps: v1.0-beta
+ /roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}: v1.0-beta
+ /roleManagement/entitlementManagement/roleAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/roleManagement/entitlementManagement/roleAssignmentRequests: v1.0-beta
/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}: v1.0-beta
/roleManagement/entitlementManagement/roleAssignmentRequests/{unifiedRoleAssignmentRequest-id}/activatedUsing: v1.0-beta
diff --git a/profiles/DeviceManagement.Enrolment/definitions/v1.0.md b/profiles/DeviceManagement.Enrolment/definitions/v1.0.md
index d68dbaf2b70..eef35d74c5b 100644
--- a/profiles/DeviceManagement.Enrolment/definitions/v1.0.md
+++ b/profiles/DeviceManagement.Enrolment/definitions/v1.0.md
@@ -13,5 +13,6 @@ profiles:
/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments: v1.0
? /deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}
: v1.0
+ /roleManagement: v1.0
```
diff --git a/profiles/DeviceManagement.Enrolment/readme.md b/profiles/DeviceManagement.Enrolment/readme.md
index 96df7f1d5f8..21fc0c003fa 100644
--- a/profiles/DeviceManagement.Enrolment/readme.md
+++ b/profiles/DeviceManagement.Enrolment/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json b/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json
index 8a74c0145e3..8f84b6076bf 100644
--- a/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json
+++ b/profiles/DeviceManagement.Functions/crawl-log-v1.0-beta.json
@@ -2,236 +2,244 @@
"resources": [],
"operations": {
"/deviceManagement/applePushNotificationCertificate/microsoft.graph.downloadApplePushNotificationCertificateSigningRequest()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
+ },
+ "/deviceManagement/assignmentFilters/microsoft.graph.getState()": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/auditEvents/microsoft.graph.getAuditActivityTypes(category='{category}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/auditEvents/microsoft.graph.getAuditCategories()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/configManagerCollections/microsoft.graph.getPolicySummary(policyId='{policyId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/microsoft.graph.exportMobileConfig()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/microsoft.graph.getEncryptionPublicKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/depOnboardingSettings/microsoft.graph.getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceConfigurations/microsoft.graph.getIosAvailableUpdateVersions()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/microsoft.graph.getRemediationHistory()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceHealthScripts/microsoft.graph.areGlobalScriptsAvailable()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceHealthScripts/microsoft.graph.getRemediationSummary()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/microsoft.graph.compare(templateId='{templateId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/microsoft.graph.getManagementConditionStatementsForPlatform(platform={platform})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managementConditions/microsoft.graph.getManagementConditionsForPlatform(platform={platform})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions/microsoft.graph.getManagementConditionsForPlatform(platform={platform})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/microsoft.graph.getManagementConditionStatementExpressionString()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/managementConditionStatements/microsoft.graph.getManagementConditionStatementsForPlatform(platform={platform})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getAssignedRoleDetails()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getComanagedDevicesSummary()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getComanagementEligibleDevicesSummary()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getEffectivePermissions()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getEffectivePermissions(scope='{scope}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getRoleScopeTagsByIds(ids=@ids)": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getRoleScopeTagsByResource(resource='{resource}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.scopedForResource(resource='{resource}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
+ },
+ "/deviceManagement/microsoft.graph.userExperienceAnalyticsSummarizeWorkFromAnywhereDevices()": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/resourceOperations/{resourceOperation-id}/microsoft.graph.getScopesForUser(userid='{userid}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.hasCustomRoleScopeTag()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/roleScopeTags/microsoft.graph.hasCustomRoleScopeTag()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/microsoft.graph.compare(templateId='{templateId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/microsoft.graph.compare(templateId='{templateId}')": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/userExperienceAnalyticsDevicePerformance/microsoft.graph.summarizeDevicePerformanceDevices(summarizeBy={summarizeBy})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/microsoft.graph.summarizeDeviceRegressionPerformance(summarizeBy={summarizeBy})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/userExperienceAnalyticsRemoteConnection/microsoft.graph.summarizeDeviceRemoteConnection(summarizeBy={summarizeBy})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/userExperienceAnalyticsResourcePerformance/microsoft.graph.summarizeDeviceResourcePerformance(summarizeBy={summarizeBy})": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/virtualEndpoint/deviceImages/microsoft.graph.getSourceImages()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
},
"/deviceManagement/virtualEndpoint/microsoft.graph.getEffectivePermissions()": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.Functions.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Functions/crawl-log-v1.0.json b/profiles/DeviceManagement.Functions/crawl-log-v1.0.json
index c21a407be07..bec4f444fb1 100644
--- a/profiles/DeviceManagement.Functions/crawl-log-v1.0.json
+++ b/profiles/DeviceManagement.Functions/crawl-log-v1.0.json
@@ -2,16 +2,16 @@
"resources": [],
"operations": {
"/deviceManagement/applePushNotificationCertificate/microsoft.graph.downloadApplePushNotificationCertificateSigningRequest()": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.getEffectivePermissions(scope='{scope}')": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml"
},
"/deviceManagement/microsoft.graph.verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.Functions.yml"
}
}
}
diff --git a/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md b/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md
index aad3caba44d..1217518b35f 100644
--- a/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md
+++ b/profiles/DeviceManagement.Functions/definitions/v1.0-beta.md
@@ -8,6 +8,7 @@ profiles:
resources: {}
operations:
/deviceManagement/applePushNotificationCertificate/microsoft.graph.downloadApplePushNotificationCertificateSigningRequest(): v1.0-beta
+ /deviceManagement/assignmentFilters/microsoft.graph.getState(): v1.0-beta
/deviceManagement/auditEvents/microsoft.graph.getAuditActivityTypes(category='{category}'): v1.0-beta
/deviceManagement/auditEvents/microsoft.graph.getAuditCategories(): v1.0-beta
/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey(): v1.0-beta
@@ -74,6 +75,7 @@ profiles:
/deviceManagement/microsoft.graph.getRoleScopeTagsByResource(resource='{resource}'): v1.0-beta
/deviceManagement/microsoft.graph.getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}'): v1.0-beta
/deviceManagement/microsoft.graph.scopedForResource(resource='{resource}'): v1.0-beta
+ /deviceManagement/microsoft.graph.userExperienceAnalyticsSummarizeWorkFromAnywhereDevices(): v1.0-beta
/deviceManagement/microsoft.graph.verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}'): v1.0-beta
/deviceManagement/resourceOperations/{resourceOperation-id}/microsoft.graph.getScopesForUser(userid='{userid}'): v1.0-beta
? /deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/microsoft.graph.hasCustomRoleScopeTag()
diff --git a/profiles/DeviceManagement.Functions/readme.md b/profiles/DeviceManagement.Functions/readme.md
index 7b25284e128..1e525ebc4d1 100644
--- a/profiles/DeviceManagement.Functions/readme.md
+++ b/profiles/DeviceManagement.Functions/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DeviceManagement/crawl-log-v1.0-beta.json b/profiles/DeviceManagement/crawl-log-v1.0-beta.json
index 7715f4ca936..2a75e4eb38b 100644
--- a/profiles/DeviceManagement/crawl-log-v1.0-beta.json
+++ b/profiles/DeviceManagement/crawl-log-v1.0-beta.json
@@ -2,1332 +2,1348 @@
"resources": [],
"operations": {
"/deviceManagement": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/advancedThreatProtectionOnboardingStateSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidForWorkAppConfigurationSchemas": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidForWorkSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidManagedStoreAccountEnterpriseSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidManagedStoreAppConfigurationSchemas": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/assignmentFilters": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/categories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/categories/{deviceManagementSettingCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/users": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/users/{user-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/dataSharingConsents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/dataSharingConsents/{dataSharingConsent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/derivedCredentials": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/detectedApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}/managedDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCategories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCategories/{deviceCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicyDeviceStateSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurationConflictSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurationDeviceStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurationUserStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}/definitionValue": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}/definitionValue/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}/presentation": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}/presentation/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/categories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/settings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/userStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceEncryptionStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceOverview/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/detectedApps": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/users": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/users/{user-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditions/{managementCondition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditions/{managementCondition-id}/managementConditionStatements/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditionStatements": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditionStatements/{managementConditionStatement-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/managementConditionStatements/{managementConditionStatement-id}/managementConditions/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelConfigurations": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelHealthThresholds": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelServerLogCollectionResponses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelSites": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/mobileAppTroubleshootingEvents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/remoteActionAudits": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/remoteActionAudits/{remoteActionAudit-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/resourceAccessProfiles": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/settingDefinitions": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/softwareUpdateStatusSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/softwareUpdateStatusSummary/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/categories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/settings": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/troubleshootingEvents": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsCategories": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceMetricHistory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDevicePerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupHistory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsImpactingProcess": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsMetricHistory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric/$ref": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
+ },
+ "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsOverview": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression/{userExperienceAnalyticsMetric-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/modelRegression/{userExperienceAnalyticsMetric-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRegressionSummary/operatingSystemRegression/{userExperienceAnalyticsMetric-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRemoteConnection": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsResourcePerformance": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsScoreHistory": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionAppLearningSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionNetworkLearningSummaries": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsMalwareInformation": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
},
"/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}": {
- "originalLocation": "/openApiDocs/beta/DeviceManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DeviceManagement.yml"
}
}
}
diff --git a/profiles/DeviceManagement/crawl-log-v1.0.json b/profiles/DeviceManagement/crawl-log-v1.0.json
index 595ecfad2be..1e21107bc83 100644
--- a/profiles/DeviceManagement/crawl-log-v1.0.json
+++ b/profiles/DeviceManagement/crawl-log-v1.0.json
@@ -2,252 +2,252 @@
"resources": [],
"operations": {
"/deviceManagement": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/detectedApps": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}/managedDevices": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$ref": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCategories": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCategories/{deviceCategory-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicyDeviceStateSummary": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurationDeviceStateSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceOverview": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDeviceOverview/$ref": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/softwareUpdateStatusSummary": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/softwareUpdateStatusSummary/$ref": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/troubleshootingEvents": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionAppLearningSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionNetworkLearningSummaries": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
},
"/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DeviceManagement.yml"
}
}
}
diff --git a/profiles/DeviceManagement/definitions/v1.0-beta.md b/profiles/DeviceManagement/definitions/v1.0-beta.md
index f1204ac5838..a27bbd3af45 100644
--- a/profiles/DeviceManagement/definitions/v1.0-beta.md
+++ b/profiles/DeviceManagement/definitions/v1.0-beta.md
@@ -344,6 +344,8 @@ profiles:
/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics/$ref: v1.0-beta
/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics: v1.0-beta
/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics/$ref: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics/$ref: v1.0-beta
/deviceManagement/userExperienceAnalyticsCategories: v1.0-beta
/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}: v1.0-beta
/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues: v1.0-beta
@@ -373,6 +375,8 @@ profiles:
/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric: v1.0-beta
? /deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}/userExperienceAnalyticsMetric/$ref
: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice: v1.0-beta
+ /deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}: v1.0-beta
/deviceManagement/userExperienceAnalyticsOverview: v1.0-beta
/deviceManagement/userExperienceAnalyticsRegressionSummary: v1.0-beta
/deviceManagement/userExperienceAnalyticsRegressionSummary/manufacturerRegression: v1.0-beta
diff --git a/profiles/DeviceManagement/readme.md b/profiles/DeviceManagement/readme.md
index 162b39bde89..1c3de9d5890 100644
--- a/profiles/DeviceManagement/readme.md
+++ b/profiles/DeviceManagement/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Devices.CloudPrint/crawl-log-v1.0-beta.json b/profiles/Devices.CloudPrint/crawl-log-v1.0-beta.json
index 1204f79cb94..d8092f84591 100644
--- a/profiles/Devices.CloudPrint/crawl-log-v1.0-beta.json
+++ b/profiles/Devices.CloudPrint/crawl-log-v1.0-beta.json
@@ -2,228 +2,228 @@
"resources": [],
"operations": {
"/print": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/connectors": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/connectors/{printConnector-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/operations": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/operations/{printOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/connectors": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/connectors/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/microsoft.graph.getCapabilities()": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/microsoft.graph.resetDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/microsoft.graph.restoreFactoryDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/share": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/share/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/shares": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/shares/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printers/microsoft.graph.create": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/allowedGroups": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/allowedGroups/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/allowedUsers": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/allowedUsers/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/printer": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/printer/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/printer/microsoft.graph.getCapabilities()": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/printer/microsoft.graph.resetDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/printerShares/{printerShare-id}/printer/microsoft.graph.restoreFactoryDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/reports": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/services": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}/endpoints": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedGroups": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedGroups/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedUsers": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedUsers/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/microsoft.graph.getCapabilities()": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/microsoft.graph.resetDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/microsoft.graph.restoreFactoryDefaults": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CloudPrint.yml"
}
}
}
diff --git a/profiles/Devices.CloudPrint/crawl-log-v1.0.json b/profiles/Devices.CloudPrint/crawl-log-v1.0.json
index a1533c54527..f5a3d27113e 100644
--- a/profiles/Devices.CloudPrint/crawl-log-v1.0.json
+++ b/profiles/Devices.CloudPrint/crawl-log-v1.0.json
@@ -2,156 +2,156 @@
"resources": [],
"operations": {
"/print": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/connectors": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/connectors/{printConnector-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/operations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/operations/{printOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/connectors": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/connectors/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/microsoft.graph.restoreFactoryDefaults": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/shares": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/shares/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/printers/microsoft.graph.create": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/services": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}/endpoints": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedGroups": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedGroups/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedUsers": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/allowedUsers/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/shares/{printerShare-id}/printer/microsoft.graph.restoreFactoryDefaults": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/definition/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
},
"/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CloudPrint.yml"
}
}
}
diff --git a/profiles/Devices.CloudPrint/readme.md b/profiles/Devices.CloudPrint/readme.md
index 2bb5876dc33..ef8d9cd91c5 100644
--- a/profiles/Devices.CloudPrint/readme.md
+++ b/profiles/Devices.CloudPrint/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json b/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json
index 83b9e3dbd46..bd3203c4d74 100644
--- a/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json
+++ b/profiles/Devices.CorporateManagement/crawl-log-v1.0-beta.json
@@ -2,172 +2,160 @@
"resources": [],
"operations": {
"/deviceAppManagement": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/deviceAppManagementTasks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}/microsoft.graph.updateStatus": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/enterpriseCodeSigningCertificates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosLobAppProvisioningConfigurations/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0-beta",
@@ -178,40 +166,28 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0-beta",
@@ -222,32 +198,20 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0-beta",
@@ -258,216 +222,204 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/microsoft.graph.getUserIdsWithFlaggedAppRegistration()": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBookCategories": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/categories": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/categories/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mdmWindowsInformationProtectionPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mdmWindowsInformationProtectionPolicies/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/microsoft.graph.syncMicrosoftStoreForBusinessApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppCategories": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/categories": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeDeviceLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeUserLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
"apiVersion": "v1.0-beta",
@@ -482,32 +434,20 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.updateRelationships": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/installSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.iosVppApp/microsoft.graph.revokeDeviceLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.iosVppApp/microsoft.graph.revokeUserLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
"apiVersion": "v1.0-beta",
@@ -522,52 +462,40 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.updateRelationships": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/relationships": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeDeviceLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeUserLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
"apiVersion": "v1.0-beta",
@@ -582,44 +510,32 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/app/microsoft.graph.updateRelationships": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.getRelatedAppStates(userPrincipalName='{userPrincipalName}',deviceId='{deviceId}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeDeviceLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeUserLicense": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.iosVppApp/microsoft.graph.revokeAllLicenses": {
"apiVersion": "v1.0-beta",
@@ -634,296 +550,288 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/userStatuses/{userAppInstallStatus-id}/deviceStatuses/{mobileAppInstallStatus-id}/app/microsoft.graph.updateRelationships": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/microsoft.graph.getMobileAppCount(status='{status}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/microsoft.graph.getTopMobileApps(status='{status}',count={count})": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/microsoft.graph.validateXml": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}/items": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/{policySet-id}/microsoft.graph.update": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/policySets/microsoft.graph.getPolicySets": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/sideLoadingKeys": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/sideLoadingKeys/{sideLoadingKey-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/symantecCodeSigningCertificate": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/{vppToken-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/{vppToken-id}/microsoft.graph.revokeLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/{vppToken-id}/microsoft.graph.syncLicenses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/microsoft.graph.getLicensesForApp(bundleId='{bundleId}')": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/microsoft.graph.syncLicenseCounts": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}/policy": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}/policy/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}/policy/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionDeviceRegistrations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionPolicies": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionWipeActions": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsManagementApp": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsManagementApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/assignments/{officeClientConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/policyPayload": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/{officeClientConfiguration-id}/userPreferencePayload": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/officeConfiguration/clientConfigurations/microsoft.graph.updatePriorities": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceManagementTroubleshootingEvents": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedAppRegistrations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedAppRegistrations/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails": {
"apiVersion": "v1.0-beta",
@@ -934,116 +842,116 @@
"originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/users": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/users/{user-id1}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppIntentAndStates": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppTroubleshootingEvents": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/windowsInformationProtectionDeviceRegistrations": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
},
"/users/{user-id}/windowsInformationProtectionDeviceRegistrations/$ref": {
- "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Devices.CorporateManagement.yml"
}
}
}
diff --git a/profiles/Devices.CorporateManagement/crawl-log-v1.0.json b/profiles/Devices.CorporateManagement/crawl-log-v1.0.json
index 27f16832a6a..951751a0b17 100644
--- a/profiles/Devices.CorporateManagement/crawl-log-v1.0.json
+++ b/profiles/Devices.CorporateManagement/crawl-log-v1.0.json
@@ -2,96 +2,84 @@
"resources": [],
"operations": {
"/deviceAppManagement": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0",
@@ -102,40 +90,28 @@
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0",
@@ -146,32 +122,20 @@
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
- },
- "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
"apiVersion": "v1.0",
@@ -182,264 +146,264 @@
"originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppRegistrations/microsoft.graph.getUserIdsWithFlaggedAppRegistration()": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppStatuses": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mdmWindowsInformationProtectionPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/microsoft.graph.syncMicrosoftStoreForBusinessApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppCategories": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/categories": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/mobileApps/{mobileApp-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/{vppToken-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/vppTokens/{vppToken-id}/microsoft.graph.syncLicenses": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceManagementTroubleshootingEvents": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedAppRegistrations": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedAppRegistrations/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}": {
- "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Devices.CorporateManagement.yml"
}
}
}
diff --git a/profiles/Devices.CorporateManagement/readme.md b/profiles/Devices.CorporateManagement/readme.md
index 2647ce03bb6..b68782ee81a 100644
--- a/profiles/Devices.CorporateManagement/readme.md
+++ b/profiles/Devices.CorporateManagement/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/DirectoryObjects/crawl-log-v1.0-beta.json b/profiles/DirectoryObjects/crawl-log-v1.0-beta.json
index 965dcac4230..5764e546444 100644
--- a/profiles/DirectoryObjects/crawl-log-v1.0-beta.json
+++ b/profiles/DirectoryObjects/crawl-log-v1.0-beta.json
@@ -2,44 +2,44 @@
"resources": [],
"operations": {
"/directoryObjects": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/DirectoryObjects.yml"
}
}
}
diff --git a/profiles/DirectoryObjects/crawl-log-v1.0.json b/profiles/DirectoryObjects/crawl-log-v1.0.json
index a49c2092840..7d2562f5f72 100644
--- a/profiles/DirectoryObjects/crawl-log-v1.0.json
+++ b/profiles/DirectoryObjects/crawl-log-v1.0.json
@@ -2,44 +2,44 @@
"resources": [],
"operations": {
"/directoryObjects": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/{directoryObject-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
},
"/directoryObjects/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/DirectoryObjects.yml"
}
}
}
diff --git a/profiles/DirectoryObjects/readme.md b/profiles/DirectoryObjects/readme.md
index 8eb6d94d3d1..f0e3cc6bd93 100644
--- a/profiles/DirectoryObjects/readme.md
+++ b/profiles/DirectoryObjects/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Education/crawl-log-v1.0-beta.json b/profiles/Education/crawl-log-v1.0-beta.json
index ee19da3f562..2a8fa4b04b0 100644
--- a/profiles/Education/crawl-log-v1.0-beta.json
+++ b/profiles/Education/crawl-log-v1.0-beta.json
@@ -2,532 +2,524 @@
"resources": [],
"operations": {
"/education": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignmentCategories": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
- },
- "/education/classes/{educationClass-id}/assignmentDefaults": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignmentDefaults": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
- },
- "/education/classes/{educationClass-id}/assignmentSettings": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/assignmentSettings": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/group": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/group/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/members": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/members/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/members/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/schools": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/schools/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/teachers": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/teachers/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/{educationClass-id}/teachers/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/categories": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/rubric": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/classes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/classes/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/rubrics": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/rubrics/{educationRubric-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/schools": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/schools/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/taughtClasses": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/taughtClasses/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/taughtClasses/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/user": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/me/user/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/administrativeUnit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/administrativeUnit/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/classes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/classes/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/users": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/users/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/{educationSchool-id}/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/microsoft.graph.pause": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/microsoft.graph.reset": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/microsoft.graph.resume": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/microsoft.graph.uploadUrl()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.getResourcesFolderUrl()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.return": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.submit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/microsoft.graph.unsubmit": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/classes": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/classes/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/rubrics": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/rubrics/{educationRubric-id}": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/schools": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/schools/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/taughtClasses": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/taughtClasses/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/taughtClasses/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/user": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/{educationUser-id}/user/$ref": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
},
"/education/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Education.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Education.yml"
}
}
}
diff --git a/profiles/Education/crawl-log-v1.0.json b/profiles/Education/crawl-log-v1.0.json
index b8929da5fa1..ce2b84336dc 100644
--- a/profiles/Education/crawl-log-v1.0.json
+++ b/profiles/Education/crawl-log-v1.0.json
@@ -2,72 +2,56 @@
"resources": [],
"operations": {
"/education": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/group": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/group/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/members/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/classes/{educationClass-id}/members/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/members/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/schools": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/schools/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/classes/{educationClass-id}/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/schools/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/teachers": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/teachers/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/classes/{educationClass-id}/teachers/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/classes/{educationClass-id}/teachers/microsoft.graph.delta()": {
"apiVersion": "v1.0",
@@ -78,48 +62,28 @@
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/classes": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/classes/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/me/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/classes/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/schools": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/schools/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/me/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/me/taughtClasses": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/me/taughtClasses/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/me/taughtClasses/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/schools/microsoft.graph.delta()": {
"apiVersion": "v1.0",
@@ -138,28 +102,20 @@
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/user": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/me/user/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/schools/{educationSchool-id}/administrativeUnit": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/schools/{educationSchool-id}/administrativeUnit/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/administrativeUnit": {
"apiVersion": "v1.0",
@@ -170,36 +126,24 @@
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/classes": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/classes/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/schools/{educationSchool-id}/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/classes/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/users": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/users/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/schools/{educationSchool-id}/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/schools/{educationSchool-id}/users/microsoft.graph.delta()": {
"apiVersion": "v1.0",
@@ -210,52 +154,32 @@
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/classes": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/classes/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/users/{educationUser-id}/classes/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/classes/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/schools": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/schools/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/users/{educationUser-id}/schools/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/users/{educationUser-id}/taughtClasses": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/users/{educationUser-id}/taughtClasses/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
- },
- "/education/users/{educationUser-id}/taughtClasses/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/schools/microsoft.graph.delta()": {
"apiVersion": "v1.0",
@@ -274,16 +198,16 @@
"originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/user": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/{educationUser-id}/user/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
},
"/education/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Education.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Education.yml"
}
}
}
diff --git a/profiles/Education/readme.md b/profiles/Education/readme.md
index ae1e2d7286f..ceb62f50003 100644
--- a/profiles/Education/readme.md
+++ b/profiles/Education/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Files/crawl-log-v1.0-beta.json b/profiles/Files/crawl-log-v1.0-beta.json
index 16536915a08..ccc28ff1052 100644
--- a/profiles/Files/crawl-log-v1.0-beta.json
+++ b/profiles/Files/crawl-log-v1.0-beta.json
@@ -2,212 +2,204 @@
"resources": [],
"operations": {
"/drives": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/activities/{itemActivityOLD-id1}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/bundles": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/bundles/{driveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/bundles/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/following": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/following/{driveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/following/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/items": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/items/{driveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/items/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/activities/{itemActivityOLD-id1}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/columns": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn": {
"apiVersion": "v1.0-beta",
@@ -218,52 +210,12 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/base": {
"apiVersion": "v1.0-beta",
@@ -306,60 +258,12 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/{contentType-id}/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/drives/{drive-id}/list/contentTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions": {
"apiVersion": "v1.0-beta",
@@ -410,260 +314,252 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/drive": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/subscriptions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/list/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.recent()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.search(q='{q}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.sharedWithMe()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/root": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/root/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/special": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/special/{driveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/drives/{drive-id}/special/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/groups/{group-id}/drive": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/groups/{group-id}/drives": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/groups/{group-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/items": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/items/{driveItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/items/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/activities/{itemActivityOLD-id1}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/columns": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn": {
"apiVersion": "v1.0-beta",
@@ -674,52 +570,12 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base": {
"apiVersion": "v1.0-beta",
@@ -762,60 +618,12 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
- },
- "/shares/{sharedDriveItem-id}/list/contentTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions": {
"apiVersion": "v1.0-beta",
@@ -866,208 +674,208 @@
"originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/drive": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/subscriptions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/permission": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/permission/microsoft.graph.grant": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/permission/microsoft.graph.revokeGrants": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/root": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/root/content": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/shares/{sharedDriveItem-id}/site": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/users/{user-id}/drive": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/users/{user-id}/drives": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
},
"/users/{user-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/beta/Files.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Files.yml"
}
}
}
diff --git a/profiles/Files/crawl-log-v1.0.json b/profiles/Files/crawl-log-v1.0.json
index 0cb6067fce4..c7fa7f44587 100644
--- a/profiles/Files/crawl-log-v1.0.json
+++ b/profiles/Files/crawl-log-v1.0.json
@@ -2,372 +2,372 @@
"resources": [],
"operations": {
"/drives": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/following": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/following/{driveItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/following/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/items": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/items/{driveItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/items/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/columns": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/contentTypes": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/drive": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval()": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/subscriptions": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/list/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.recent()": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.search(q='{q}')": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/microsoft.graph.sharedWithMe()": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/root": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/root/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/special": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/special/{driveItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/drives/{drive-id}/special/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/groups/{group-id}/drive": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/groups/{group-id}/drives": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/groups/{group-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/items": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/items/{driveItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/items/{driveItem-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/columns": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/drive": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval()": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/subscriptions": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/microsoft.graph.getActivitiesByInterval()": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/permission": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/permission/microsoft.graph.grant": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/root": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/root/content": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/shares/{sharedDriveItem-id}/site": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/users/{user-id}/drive": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/users/{user-id}/drives": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
},
"/users/{user-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/v1.0/Files.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Files.yml"
}
}
}
diff --git a/profiles/Files/readme.md b/profiles/Files/readme.md
index 598aba8acb3..e28d76534c9 100644
--- a/profiles/Files/readme.md
+++ b/profiles/Files/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Financials/crawl-log-v1.0-beta.json b/profiles/Financials/crawl-log-v1.0-beta.json
index e6958158c9f..e89435b514d 100644
--- a/profiles/Financials/crawl-log-v1.0-beta.json
+++ b/profiles/Financials/crawl-log-v1.0-beta.json
@@ -2,1008 +2,1008 @@
"resources": [],
"operations": {
"/financials": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/accounts": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/accounts/{account-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/agedAccountsPayable": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/agedAccountsReceivable": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/companyInformation": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/companyInformation/{companyInformation-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/countriesRegions": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/countriesRegions/{countryRegion-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/currencies": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/currencies/{currency-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensions": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensions/{dimension-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/{dimensionValue-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensionValues": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/dimensionValues/{dimensionValue-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/employees": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/employees/{employee-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/employees/{employee-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/generalLedgerEntries": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/itemCategories": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/itemCategories/{itemCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items/{item-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items/{item-id}/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items/{item-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journalLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journalLines/{journalLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journalLines/{journalLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}/journalLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}/journalLines/{journalLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}/journalLines/{journalLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/journals/{journal-id}/microsoft.graph.post": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/paymentMethods": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/paymentTerms": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/microsoft.graph.post": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/microsoft.graph.cancelAndSend": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/microsoft.graph.post": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/microsoft.graph.postAndSend": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesOrders/{salesOrder-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/microsoft.graph.makeInvoice": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/account": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/item": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/shipmentMethods": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/taxAreas": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/taxAreas/{taxArea-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/taxGroups": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/taxGroups/{taxGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/unitsOfMeasure": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/currency": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/picture": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
},
"/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content": {
- "originalLocation": "/openApiDocs/beta/Financials.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Financials.yml"
}
}
}
diff --git a/profiles/Groups/crawl-log-v1.0-beta.json b/profiles/Groups/crawl-log-v1.0-beta.json
index 1805f1c2acb..eb152c8ca9b 100644
--- a/profiles/Groups/crawl-log-v1.0-beta.json
+++ b/profiles/Groups/crawl-log-v1.0-beta.json
@@ -2,1420 +2,1420 @@
"resources": [],
"operations": {
"/groupLifecyclePolicies": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}/microsoft.graph.addGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}/microsoft.graph.removeGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groupLifecyclePolicies/microsoft.graph.renewGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/acceptedSenders": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/acceptedSenders/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/createdOnBehalfOf": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/createdOnBehalfOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/endpoints": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/endpoints/{endpoint-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/members": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/members/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/membersWithLicenseErrors": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/membersWithLicenseErrors/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.addFavorite": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.assignLicense": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkGrantedPermissionsForApp": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.evaluateDynamicMembership": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.removeFavorite": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.renew": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.resetUnseenCount": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.subscribeByMail": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.unsubscribeByMail": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/owners": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/permissionGrants": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/photo": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/photo/$value": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/photos": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/photos/{profilePhoto-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/photos/{profilePhoto-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/rejectedSenders": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/rejectedSenders/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/settings": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/settings/{directorySetting-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/transitiveMembers": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/{group-id}/transitiveMembers/$ref": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/microsoft.graph.evaluateDynamicMembership": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/groups/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/users/{user-id}/joinedGroups": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
},
"/users/{user-id}/joinedGroups/{group-id}": {
- "originalLocation": "/openApiDocs/beta/Groups.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Groups.yml"
}
}
}
diff --git a/profiles/Groups/crawl-log-v1.0.json b/profiles/Groups/crawl-log-v1.0.json
index 019e54309e9..0fe67cd2707 100644
--- a/profiles/Groups/crawl-log-v1.0.json
+++ b/profiles/Groups/crawl-log-v1.0.json
@@ -2,1240 +2,1240 @@
"resources": [],
"operations": {
"/groupLifecyclePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}/microsoft.graph.addGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groupLifecyclePolicies/{groupLifecyclePolicy-id}/microsoft.graph.removeGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/acceptedSenders": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/acceptedSenders/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/createdOnBehalfOf": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/createdOnBehalfOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/memberOf": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/members/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/membersWithLicenseErrors": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/membersWithLicenseErrors/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.addFavorite": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.assignLicense": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkGrantedPermissionsForApp": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.removeFavorite": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.renew": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.resetUnseenCount": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.subscribeByMail": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.unsubscribeByMail": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/owners": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/permissionGrants": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/photo": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/photo/$value": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/photos": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/photos/{profilePhoto-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/photos/{profilePhoto-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/rejectedSenders": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/rejectedSenders/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/transitiveMembers": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/{group-id}/transitiveMembers/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
},
"/groups/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Groups.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Groups.yml"
}
}
}
diff --git a/profiles/Groups/readme.md b/profiles/Groups/readme.md
index 3c97ff7dc1e..eb7aaec76b0 100644
--- a/profiles/Groups/readme.md
+++ b/profiles/Groups/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json b/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json
index ae358d2e55c..1f045e8628c 100644
--- a/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json
+++ b/profiles/Identity.DirectoryManagement/crawl-log-v1.0-beta.json
@@ -2,272 +2,264 @@
"resources": [],
"operations": {
"/administrativeUnits": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/members": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/members/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/administrativeUnits/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/directReports": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/directReports/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/manager": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/manager/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/commands": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/commands/{command-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredOwners": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredOwners/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredUsers": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredUsers/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/devices/{device-id}/usageRights": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
- },
- "/devices/{device-id}/usageRights/{usageRight-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/usageRights": {
"apiVersion": "v1.0-beta",
@@ -278,344 +270,344 @@
"originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/deletedItems": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/deletedItems/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/featureRolloutPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/featureRolloutPolicies/{featureRolloutPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/sharedEmailDomains": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directory/sharedEmailDomains/{sharedEmailDomain-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/members": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/members/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/scopedMembers": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/{directorySettingTemplate-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/directorySettingTemplates/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/domainNameReferences": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/domainNameReferences/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/microsoft.graph.forceDelete": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/microsoft.graph.verify": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/serviceConfigurationRecords": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/sharedEmailDomainInvitations": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/verificationDnsRecords": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/branding": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.setMobileDeviceManagementAuthority": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/settings": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/settings/itemInsights": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/settings/profileCardProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/settings/profileCardProperties/{profileCardProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/settings": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/settings/{directorySetting-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/subscribedSkus": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/subscribedSkus/{subscribedSku-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/users/{user-id}/scopedRoleMemberOf": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
},
"/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.DirectoryManagement.yml"
}
}
}
diff --git a/profiles/Identity.DirectoryManagement/crawl-log-v1.0.json b/profiles/Identity.DirectoryManagement/crawl-log-v1.0.json
index cc2034cf4df..f5b1ecc768e 100644
--- a/profiles/Identity.DirectoryManagement/crawl-log-v1.0.json
+++ b/profiles/Identity.DirectoryManagement/crawl-log-v1.0.json
@@ -2,464 +2,460 @@
"resources": [],
"operations": {
"/contacts": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/directReports": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/directReports/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/manager": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/manager/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/memberOf": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/{orgContact-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contacts/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/{contract-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/contracts/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/memberOf": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredOwners": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredOwners/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredUsers": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/registeredUsers/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/{device-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/devices/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/members/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/administrativeUnits/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/deletedItems": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directory/deletedItems/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/members/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/scopedMembers": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoles/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/{directoryRoleTemplate-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/directoryRoleTemplates/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/domainNameReferences": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/domainNameReferences/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/microsoft.graph.forceDelete": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/microsoft.graph.verify": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/serviceConfigurationRecords": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/verificationDnsRecords": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
- },
- "/organization/{organization-id}/branding": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/branding": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/{organization-id}/microsoft.graph.setMobileDeviceManagementAuthority": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/organization/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/subscribedSkus": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/subscribedSkus/{subscribedSku-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/users/{user-id}/scopedRoleMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
},
"/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.DirectoryManagement.yml"
}
}
}
diff --git a/profiles/Identity.DirectoryManagement/readme.md b/profiles/Identity.DirectoryManagement/readme.md
index d94c0f0de55..2f4a76d0d6a 100644
--- a/profiles/Identity.DirectoryManagement/readme.md
+++ b/profiles/Identity.DirectoryManagement/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Identity.Governance/crawl-log-v1.0-beta.json b/profiles/Identity.Governance/crawl-log-v1.0-beta.json
index c3ce2ad7c50..5e21248dea1 100644
--- a/profiles/Identity.Governance/crawl-log-v1.0-beta.json
+++ b/profiles/Identity.Governance/crawl-log-v1.0-beta.json
@@ -2,172 +2,168 @@
"resources": [],
"operations": {
"/accessReviews": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/decisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/instances": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/instances/{accessReview-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/microsoft.graph.applyDecisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/microsoft.graph.resetDecisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/microsoft.graph.sendReminder": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/myDecisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/reviewers": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/acceptances": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/businessFlowTemplates": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/businessFlowTemplates/{businessFlowTemplate-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.applyDecisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.resetDecisions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.sendReminder": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/microsoft.graph.generateDownloadUri": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals": {
"apiVersion": "v1.0-beta",
@@ -190,44 +186,36 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -238,40 +226,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -282,48 +262,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -334,72 +306,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -410,40 +374,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -454,92 +410,88 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -550,40 +502,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -594,48 +538,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -646,68 +582,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -718,40 +650,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -762,60 +686,52 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -826,40 +742,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -870,48 +778,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -922,72 +822,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -998,40 +890,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1042,80 +926,76 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.Cancel": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.cancel": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1126,40 +1006,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1170,132 +1042,124 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/target": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/target/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/target/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1306,40 +1170,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1350,48 +1206,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1402,68 +1250,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1474,40 +1318,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1518,60 +1354,52 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1582,40 +1410,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1626,48 +1446,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1678,72 +1490,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1754,40 +1558,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1798,112 +1594,108 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/target": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1914,40 +1706,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -1958,92 +1742,84 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2054,40 +1830,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2098,48 +1866,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2150,68 +1910,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2222,40 +1978,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2266,60 +2014,52 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2330,40 +2070,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2374,48 +2106,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2426,72 +2150,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2502,40 +2218,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2546,104 +2254,100 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2654,40 +2358,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2698,84 +2394,76 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageSubject/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/target": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.My()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2786,40 +2474,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2830,48 +2510,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2882,84 +2554,76 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -2970,40 +2634,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3014,48 +2670,36 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageCatalogs/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceEnvironments": {
"apiVersion": "v1.0-beta",
@@ -3074,56 +2718,48 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/accessPackageResource/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/requestor": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/requestor/connectedOrganization": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}/requestor/connectedOrganization/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3134,40 +2770,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3178,40 +2806,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3222,76 +2842,68 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3302,40 +2914,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3346,48 +2950,40 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResources/{accessPackageResource-id}/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3398,68 +2994,64 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3470,40 +3062,32 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceRole/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
- },
- "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceEnvironment": {
"apiVersion": "v1.0-beta",
@@ -3514,256 +3098,260 @@
"originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceRoles/{accessPackageResourceRole-id}/accessPackageResource": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
+ },
+ "/identityGovernance/entitlementManagement/accessPackages/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/accessPackages/microsoft.graph.Search()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/identityGovernance/entitlementManagement/settings": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/resources": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleDefinitions": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleSettings": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval/{privilegedApproval-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval/{privilegedApproval-id}/request": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval/{privilegedApproval-id}/request/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval/{privilegedApproval-id}/roleInfo": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedApproval/microsoft.graph.myRequests()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedOperationEvents": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedOperationEvents/{privilegedOperationEvent-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignmentRequests/microsoft.graph.my()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments/{privilegedRoleAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makeEligible": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makePermanent": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoleAssignments/microsoft.graph.my()": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/assignments": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/assignments/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfActivate": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfDeactivate": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/settings": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/privilegedRoles/{privilegedRole-id}/summary": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programControls": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programControls/{programControl-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programControls/{programControl-id}/program": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programControlTypes": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programControlTypes/{programControlType-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programs": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programs/{program-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programs/{program-id}/controls": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/programs/{program-id}/controls/{programControl-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/users/{user-id}/agreementAcceptances": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
},
"/users/{user-id}/agreementAcceptances/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.Governance.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.Governance.yml"
}
}
}
diff --git a/profiles/Identity.Governance/crawl-log-v1.0.json b/profiles/Identity.Governance/crawl-log-v1.0.json
index d9d168b0733..dbd2b0394ba 100644
--- a/profiles/Identity.Governance/crawl-log-v1.0.json
+++ b/profiles/Identity.Governance/crawl-log-v1.0.json
@@ -2,64 +2,72 @@
"resources": [],
"operations": {
"/agreements": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/acceptances": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
+ },
+ "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
+ },
+ "/identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/users/{user-id}/agreementAcceptances": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
},
"/users/{user-id}/agreementAcceptances/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.Governance.yml"
}
}
}
diff --git a/profiles/Identity.Governance/definitions/v1.0-beta.md b/profiles/Identity.Governance/definitions/v1.0-beta.md
index 8472f73efc6..c4cf2e930c6 100644
--- a/profiles/Identity.Governance/definitions/v1.0-beta.md
+++ b/profiles/Identity.Governance/definitions/v1.0-beta.md
@@ -42,6 +42,8 @@ profiles:
: v1.0-beta
? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.applyDecisions
: v1.0-beta
+ ? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions
+ : v1.0-beta
? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.resetDecisions
: v1.0-beta
? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.sendReminder
@@ -49,6 +51,10 @@ profiles:
? /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/microsoft.graph.stop
: v1.0-beta
/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/microsoft.graph.stop: v1.0-beta
+ /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/microsoft.graph.generateDownloadUri: v1.0-beta
+ ? /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
+ /identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/identityGovernance/entitlementManagement: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}: v1.0-beta
@@ -173,6 +179,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentRequests: v1.0-beta
@@ -257,6 +265,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackage/accessPackageCatalog
@@ -423,15 +433,17 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.Cancel
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id1}/microsoft.graph.cancel
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles
: v1.0-beta
@@ -441,7 +453,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole
: v1.0-beta
@@ -493,14 +505,14 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment/target/connectedOrganization/$ref
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel
: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref
: v1.0-beta
- /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.My(): v1.0-beta
+ /identityGovernance/entitlementManagement/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments
@@ -583,6 +595,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog
@@ -749,6 +763,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests
@@ -761,7 +777,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor
: v1.0-beta
@@ -769,7 +785,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles
: v1.0-beta
@@ -783,7 +799,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization/$ref
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole
: v1.0-beta
@@ -905,6 +921,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackage/accessPackageCatalog
@@ -1070,6 +1088,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentPolicy/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests: v1.0-beta
@@ -1081,7 +1101,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.Cancel
+ ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/microsoft.graph.cancel
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor
: v1.0-beta
@@ -1089,7 +1109,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization/$ref
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentRequests/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles
: v1.0-beta
@@ -1099,7 +1119,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/{accessPackageAssignment-id1}
: v1.0-beta
- ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.My()
+ ? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on})
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}/accessPackageResourceRole
: v1.0-beta
@@ -1149,7 +1169,7 @@ profiles:
/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/target/connectedOrganization/$ref
: v1.0-beta
- /identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.My(): v1.0-beta
+ /identityGovernance/entitlementManagement/accessPackageAssignments/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/identityGovernance/entitlementManagement/accessPackageCatalogs: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles: v1.0-beta
@@ -1265,6 +1285,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackages/microsoft.graph.Search()
: v1.0-beta
/identityGovernance/entitlementManagement/accessPackageCatalogs/microsoft.graph.Search(): v1.0-beta
@@ -1412,6 +1434,8 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/{accessPackage-id1}
: v1.0-beta
+ ? /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
? /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackageCatalog/accessPackages/microsoft.graph.Search()
: v1.0-beta
/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageCatalog: v1.0-beta
@@ -1455,6 +1479,7 @@ profiles:
: v1.0-beta
? /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}/accessPackageResourceScope/accessPackageResource/accessPackageResourceScopes/{accessPackageResourceScope-id}
: v1.0-beta
+ /identityGovernance/entitlementManagement/accessPackages/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/identityGovernance/entitlementManagement/accessPackages/microsoft.graph.Search(): v1.0-beta
/identityGovernance/entitlementManagement/connectedOrganizations: v1.0-beta
/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}: v1.0-beta
diff --git a/profiles/Identity.Governance/definitions/v1.0.md b/profiles/Identity.Governance/definitions/v1.0.md
index 8662db5d84e..634615faa81 100644
--- a/profiles/Identity.Governance/definitions/v1.0.md
+++ b/profiles/Identity.Governance/definitions/v1.0.md
@@ -20,6 +20,9 @@ profiles:
/agreements/{agreement-id}/files/{agreementFileLocalization-id}: v1.0
/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions: v1.0
/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}: v1.0
+ ? /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0
+ /identityGovernance/appConsent/appConsentRequests/microsoft.graph.filterByCurrentUser(on={on}): v1.0
/users/{user-id}/agreementAcceptances: v1.0
/users/{user-id}/agreementAcceptances/$ref: v1.0
diff --git a/profiles/Identity.Governance/readme.md b/profiles/Identity.Governance/readme.md
index e3b4b9fc191..a0f157ef08b 100644
--- a/profiles/Identity.Governance/readme.md
+++ b/profiles/Identity.Governance/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Identity.SignIns/crawl-log-v1.0-beta.json b/profiles/Identity.SignIns/crawl-log-v1.0-beta.json
index 998b2fcf5a1..94fce2efc76 100644
--- a/profiles/Identity.SignIns/crawl-log-v1.0-beta.json
+++ b/profiles/Identity.SignIns/crawl-log-v1.0-beta.json
@@ -2,332 +2,304 @@
"resources": [],
"operations": {
"/dataPolicyOperations": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/dataPolicyOperations/{dataPolicyOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/authenticationContextClassReferences": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/namedLocations": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/namedLocations/{namedLocation-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/policies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/userFlows": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identity/userFlows/{identityUserFlow-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identityProviders": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identityProviders/{identityProvider-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/identityProviders/microsoft.graph.availableProviderTypes()": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/bitlocker": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/dataLossPreventionPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/dataLossPreventionPolicies/microsoft.graph.evaluate": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/informationProtection/microsoft.graph.decryptBuffer": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/informationProtection/microsoft.graph.encryptBuffer": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels/{informationProtectionLabel-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels/microsoft.graph.evaluateApplication": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels/microsoft.graph.evaluateClassificationResults": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels/microsoft.graph.evaluateRemoval": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/policy/labels/microsoft.graph.extractLabel": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels/{sensitivityLabel-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/microsoft.graph.evaluate": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityLabels/microsoft.graph.evaluate": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/sensitivityPolicySettings": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/invitations": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/invitations/{invitation-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/invitations/{invitation-id}/invitedUser": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/invitations/{invitation-id}/invitedUser/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/oauth2PermissionGrants": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/oauth2PermissionGrants/{oAuth2PermissionGrant-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/oauth2PermissionGrants/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/organization/{organization-id}/certificateBasedAuthConfiguration": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/organization/{organization-id}/certificateBasedAuthConfiguration/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/activityBasedTimeoutPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/adminConsentRequestPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/authenticationFlowsPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/authenticationMethodsPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/authenticationMethodsPolicy": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/authorizationPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/authorizationPolicy/{authorizationPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/b2cAuthenticationMethodsPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/claimsMappingPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/claimsMappingPolicies/{claimsMappingPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/conditionalAccessPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/directoryRoleAccessReviewPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/identitySecurityDefaultsEnforcementPolicy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/privateLinkResourcePolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/privateLinkResourcePolicies/{privateLinkResourcePolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicyAssignments": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy/$ref": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/roleManagementPolicies": {
"apiVersion": "v1.0-beta",
@@ -370,136 +342,124 @@
"originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskDetections": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskDetections/{riskDetection-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers/{riskyUser-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers/{riskyUser-id}/history": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers/microsoft.graph.confirmCompromised": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/riskyUsers/microsoft.graph.dismiss": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}/microsoft.graph.generateKey": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}/microsoft.graph.getActiveKey()": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}/microsoft.graph.uploadCertificate": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}/microsoft.graph.uploadPkcs12": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/keySets/{trustFrameworkKeySet-id}/microsoft.graph.uploadSecret": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/policies": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/policies/{trustFrameworkPolicy-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/trustFramework/policies/{trustFrameworkPolicy-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/emailMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/fido2Methods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/methods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/methods/{authenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/microsoftAuthenticatorMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/microsoftAuthenticatorMethods": {
"apiVersion": "v1.0-beta",
@@ -514,60 +474,40 @@
"originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/operations": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/operations/{longRunningOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/passwordMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/phoneMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/temporaryAccessPassMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/windowsHelloForBusinessMethods": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/temporaryAccessPassMethods": {
"apiVersion": "v1.0-beta",
@@ -590,8 +530,8 @@
"originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
},
"/users/{user-id}/informationProtection": {
- "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Identity.SignIns.yml"
}
}
}
diff --git a/profiles/Identity.SignIns/crawl-log-v1.0.json b/profiles/Identity.SignIns/crawl-log-v1.0.json
index a7096294517..48d9c4e2acd 100644
--- a/profiles/Identity.SignIns/crawl-log-v1.0.json
+++ b/profiles/Identity.SignIns/crawl-log-v1.0.json
@@ -2,232 +2,248 @@
"resources": [],
"operations": {
"/dataPolicyOperations": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/dataPolicyOperations/{dataPolicyOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identity/conditionalAccess": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identity/conditionalAccess/namedLocations": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identity/conditionalAccess/namedLocations/{namedLocation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identity/conditionalAccess/policies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identityProviders": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/identityProviders/{identityProvider-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/informationProtection": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/invitations": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/invitations/{invitation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/invitations/{invitation-id}/invitedUser": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/invitations/{invitation-id}/invitedUser/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/oauth2PermissionGrants": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/oauth2PermissionGrants/{oAuth2PermissionGrant-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/oauth2PermissionGrants/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/organization/{organization-id}/certificateBasedAuthConfiguration": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/organization/{organization-id}/certificateBasedAuthConfiguration/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/activityBasedTimeoutPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
- "/policies/authenticationMethodsPolicy": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "/policies/adminConsentRequestPolicy": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/authenticationMethodsPolicy": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/authorizationPolicy": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/claimsMappingPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/claimsMappingPolicies/{claimsMappingPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/conditionalAccessPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
+ },
+ "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/homeRealmDiscoveryPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/identitySecurityDefaultsEnforcementPolicy": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/tokenIssuancePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/tokenLifetimePolicies": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/fido2Methods": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/methods": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/methods/{authenticationMethod-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/microsoftAuthenticatorMethods": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/windowsHelloForBusinessMethods": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
},
"/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device": {
- "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Identity.SignIns.yml"
}
}
}
diff --git a/profiles/Identity.SignIns/definitions/v1.0-beta.md b/profiles/Identity.SignIns/definitions/v1.0-beta.md
index b8d5a10156e..51a370b91f8 100644
--- a/profiles/Identity.SignIns/definitions/v1.0-beta.md
+++ b/profiles/Identity.SignIns/definitions/v1.0-beta.md
@@ -26,6 +26,8 @@ profiles:
/informationProtection/dataLossPreventionPolicies: v1.0-beta
/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}: v1.0-beta
/informationProtection/dataLossPreventionPolicies/microsoft.graph.evaluate: v1.0-beta
+ /informationProtection/microsoft.graph.decryptBuffer: v1.0-beta
+ /informationProtection/microsoft.graph.encryptBuffer: v1.0-beta
/informationProtection/policy: v1.0-beta
/informationProtection/policy/labels: v1.0-beta
/informationProtection/policy/labels/{informationProtectionLabel-id}: v1.0-beta
@@ -67,6 +69,10 @@ profiles:
/policies/conditionalAccessPolicies: v1.0-beta
/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}: v1.0-beta
/policies/directoryRoleAccessReviewPolicy: v1.0-beta
+ /policies/featureRolloutPolicies: v1.0-beta
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}: v1.0-beta
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo: v1.0-beta
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}: v1.0-beta
/policies/homeRealmDiscoveryPolicies: v1.0-beta
/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}: v1.0-beta
/policies/identitySecurityDefaultsEnforcementPolicy: v1.0-beta
@@ -76,8 +82,6 @@ profiles:
/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}: v1.0-beta
/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes: v1.0-beta
/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}: v1.0-beta
- /policies/privateLinkResourcePolicies: v1.0-beta
- /policies/privateLinkResourcePolicies/{privateLinkResourcePolicy-id}: v1.0-beta
/policies/roleManagementPolicies: v1.0-beta
/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}: v1.0-beta
/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules: v1.0-beta
diff --git a/profiles/Identity.SignIns/definitions/v1.0.md b/profiles/Identity.SignIns/definitions/v1.0.md
index 7528d2507e7..9540bc30666 100644
--- a/profiles/Identity.SignIns/definitions/v1.0.md
+++ b/profiles/Identity.SignIns/definitions/v1.0.md
@@ -33,12 +33,17 @@ profiles:
/policies: v1.0
/policies/activityBasedTimeoutPolicies: v1.0
/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}: v1.0
+ /policies/adminConsentRequestPolicy: v1.0
/policies/authenticationMethodsPolicy: v1.0
/policies/authorizationPolicy: v1.0
/policies/claimsMappingPolicies: v1.0
/policies/claimsMappingPolicies/{claimsMappingPolicy-id}: v1.0
/policies/conditionalAccessPolicies: v1.0
/policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}: v1.0
+ /policies/featureRolloutPolicies: v1.0
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}: v1.0
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo: v1.0
+ /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}: v1.0
/policies/homeRealmDiscoveryPolicies: v1.0
/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}: v1.0
/policies/identitySecurityDefaultsEnforcementPolicy: v1.0
diff --git a/profiles/Identity.SignIns/readme.md b/profiles/Identity.SignIns/readme.md
index 831c79387de..ff7b02649f6 100644
--- a/profiles/Identity.SignIns/readme.md
+++ b/profiles/Identity.SignIns/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Mail/crawl-log-v1.0-beta.json b/profiles/Mail/crawl-log-v1.0-beta.json
index 9f8a0037fde..68d86347076 100644
--- a/profiles/Mail/crawl-log-v1.0-beta.json
+++ b/profiles/Mail/crawl-log-v1.0-beta.json
@@ -2,168 +2,168 @@
"resources": [],
"operations": {
"/users/{user-id}/inferenceClassification": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/inferenceClassification/overrides": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messageRules": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/mentions": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/mentions/{mention-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Mail.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Mail.yml"
}
}
}
diff --git a/profiles/Mail/crawl-log-v1.0.json b/profiles/Mail/crawl-log-v1.0.json
index b18e4b39764..43eaaa51c03 100644
--- a/profiles/Mail/crawl-log-v1.0.json
+++ b/profiles/Mail/crawl-log-v1.0.json
@@ -2,144 +2,144 @@
"resources": [],
"operations": {
"/users/{user-id}/inferenceClassification": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/inferenceClassification/overrides": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messageRules": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/attachments": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
},
"/users/{user-id}/messages/{message-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/Mail.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Mail.yml"
}
}
}
diff --git a/profiles/Mail/readme.md b/profiles/Mail/readme.md
index 72ee34a42d6..1a9fb89ac8c 100644
--- a/profiles/Mail/readme.md
+++ b/profiles/Mail/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Notes/crawl-log-v1.0-beta.json b/profiles/Notes/crawl-log-v1.0-beta.json
index 34a8bac8a81..915dfedf7a1 100644
--- a/profiles/Notes/crawl-log-v1.0-beta.json
+++ b/profiles/Notes/crawl-log-v1.0-beta.json
@@ -2,2008 +2,2008 @@
"resources": [],
"operations": {
"/groups/{group-id}/onenote": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/beta/Notes.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Notes.yml"
}
}
}
diff --git a/profiles/Notes/crawl-log-v1.0.json b/profiles/Notes/crawl-log-v1.0.json
index e50a018149d..139d220ec02 100644
--- a/profiles/Notes/crawl-log-v1.0.json
+++ b/profiles/Notes/crawl-log-v1.0.json
@@ -2,2008 +2,2008 @@
"resources": [],
"operations": {
"/groups/{group-id}/onenote": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/operations": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/operations/{onenoteOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/resources": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/resources/{onenoteResource-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/resources/{onenoteResource-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sectionGroups/{sectionGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Notes.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Notes.yml"
}
}
}
diff --git a/profiles/Notes/readme.md b/profiles/Notes/readme.md
index 9a5963e1bce..9ef1dfe8a49 100644
--- a/profiles/Notes/readme.md
+++ b/profiles/Notes/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/People/crawl-log-v1.0-beta.json b/profiles/People/crawl-log-v1.0-beta.json
index 40b723cd6dd..43b70cc7a5e 100644
--- a/profiles/People/crawl-log-v1.0-beta.json
+++ b/profiles/People/crawl-log-v1.0-beta.json
@@ -2,180 +2,180 @@
"resources": [],
"operations": {
"/users/{user-id}/analytics": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/analytics/activityStatistics": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/people": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/people/{person-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/account": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/account/{userAccountInformation-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/addresses": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/addresses/{itemAddress-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/anniversaries": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/awards": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/awards/{personAward-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/certifications": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/certifications/{personCertification-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/educationalActivities": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/educationalActivities/{educationalActivity-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/emails": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/emails/{itemEmail-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/interests": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/interests/{personInterest-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/languages": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/languages/{languageProficiency-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/names": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/names/{personName-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/notes": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/notes/{personAnnotation-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/patents": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/patents/{itemPatent-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/phones": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/phones/{itemPhone-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/positions": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/positions/{workPosition-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/projects": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/projects/{projectParticipation-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/publications": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/publications/{itemPublication-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/skills": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/skills/{skillProficiency-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/webAccounts": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/webAccounts/{webAccount-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/websites": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
},
"/users/{user-id}/profile/websites/{personWebsite-id}": {
- "originalLocation": "/openApiDocs/beta/People.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/People.yml"
}
}
}
diff --git a/profiles/People/crawl-log-v1.0.json b/profiles/People/crawl-log-v1.0.json
index 603e127147c..85974e1840f 100644
--- a/profiles/People/crawl-log-v1.0.json
+++ b/profiles/People/crawl-log-v1.0.json
@@ -2,72 +2,72 @@
"resources": [],
"operations": {
"/users/{user-id}/insights": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/$ref": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/resource": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/resource/$ref": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/trending": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/trending/{trending-id}": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/trending/{trending-id}/resource": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/trending/{trending-id}/resource/$ref": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/used": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/used/{usedInsight-id}": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/used/{usedInsight-id}/resource": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/insights/used/{usedInsight-id}/resource/$ref": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/people": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
},
"/users/{user-id}/people/{person-id}": {
- "originalLocation": "/openApiDocs/v1.0/People.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/People.yml"
}
}
}
diff --git a/profiles/People/readme.md b/profiles/People/readme.md
index 1a0026f3e68..cf92c23c97a 100644
--- a/profiles/People/readme.md
+++ b/profiles/People/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/PersonalContacts/crawl-log-v1.0-beta.json b/profiles/PersonalContacts/crawl-log-v1.0-beta.json
index a2114ef98f8..b4f00c4acaa 100644
--- a/profiles/PersonalContacts/crawl-log-v1.0-beta.json
+++ b/profiles/PersonalContacts/crawl-log-v1.0-beta.json
@@ -2,116 +2,116 @@
"resources": [],
"operations": {
"/users/{user-id}/contactFolders": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/photo": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/photo/$value": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/PersonalContacts.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/PersonalContacts.yml"
}
}
}
diff --git a/profiles/PersonalContacts/crawl-log-v1.0.json b/profiles/PersonalContacts/crawl-log-v1.0.json
index e4348b36ae8..3a724d980f8 100644
--- a/profiles/PersonalContacts/crawl-log-v1.0.json
+++ b/profiles/PersonalContacts/crawl-log-v1.0.json
@@ -2,116 +2,116 @@
"resources": [],
"operations": {
"/users/{user-id}/contactFolders": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/photo": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/photo/$value": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
},
"/users/{user-id}/contacts/{contact-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/PersonalContacts.yml"
}
}
}
diff --git a/profiles/PersonalContacts/readme.md b/profiles/PersonalContacts/readme.md
index d780d49513f..6430bed5a41 100644
--- a/profiles/PersonalContacts/readme.md
+++ b/profiles/PersonalContacts/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Planner/crawl-log-v1.0-beta.json b/profiles/Planner/crawl-log-v1.0-beta.json
index 45c2b9a34f0..b63d48b0e22 100644
--- a/profiles/Planner/crawl-log-v1.0-beta.json
+++ b/profiles/Planner/crawl-log-v1.0-beta.json
@@ -2,204 +2,180 @@
"resources": [],
"operations": {
"/groups/{group-id}/planner": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters/{plannerRoster-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters/{plannerRoster-id}/members": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters/{plannerRoster-id}/plans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/planner/rosters/{plannerRoster-id}/plans/$ref": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/rosters": {
"apiVersion": "v1.0-beta",
@@ -226,132 +202,124 @@
"originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/all": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/all/{plannerDelta-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/favoritePlans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/favoritePlans/$ref": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/recentPlans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/recentPlans/$ref": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/planner/rosterPlans": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/planner/rosterPlans/$ref": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/rosterPlans": {
"apiVersion": "v1.0-beta",
@@ -362,28 +330,28 @@
"originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/beta/Planner.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Planner.yml"
}
}
}
diff --git a/profiles/Planner/crawl-log-v1.0.json b/profiles/Planner/crawl-log-v1.0.json
index 4f4236b9fcf..94f4d3d0ac1 100644
--- a/profiles/Planner/crawl-log-v1.0.json
+++ b/profiles/Planner/crawl-log-v1.0.json
@@ -2,300 +2,300 @@
"resources": [],
"operations": {
"/groups/{group-id}/planner": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/planner/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/details": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
},
"/users/{user-id}/planner/tasks/{plannerTask-id}/progressTaskBoardFormat": {
- "originalLocation": "/openApiDocs/v1.0/Planner.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Planner.yml"
}
}
}
diff --git a/profiles/Planner/readme.md b/profiles/Planner/readme.md
index e5a31c508a5..8c78312cff0 100644
--- a/profiles/Planner/readme.md
+++ b/profiles/Planner/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Reports/crawl-log-v1.0-beta.json b/profiles/Reports/crawl-log-v1.0-beta.json
index 7225da911d2..0b7ef09d4cc 100644
--- a/profiles/Reports/crawl-log-v1.0-beta.json
+++ b/profiles/Reports/crawl-log-v1.0-beta.json
@@ -2,76 +2,48 @@
"resources": [],
"operations": {
"/auditLogs": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/directoryAudits": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/directoryAudits/{directoryAudit-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/directoryProvisioning": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/provisioning": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/provisioning/{provisioningObjectSummary-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/restrictedSignIns": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/restrictedSignIns/{restrictedSignIn-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/signIns": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/auditLogs/signIns/{signIn-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/cachedReportConfigurations": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/cachedReportConfigurations/{deviceManagementCachedReportConfiguration-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/exportJobs": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/reportSchedules": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/deviceManagement/reports/reportSchedules/{deviceManagementReportSchedule-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/deviceManagement/reports": {
"apiVersion": "v1.0-beta",
@@ -102,36 +74,16 @@
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/applicationSignInDetailedSummary": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/authenticationMethods": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/authenticationMethods/microsoft.graph.usersRegisteredByFeature()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/authenticationMethods/microsoft.graph.usersRegisteredByFeature(includedUserTypes={includedUserTypes},includedUserRoles={includedUserRoles})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/authenticationMethods/microsoft.graph.usersRegisteredByMethod()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/authenticationMethods/microsoft.graph.usersRegisteredByMethod(includedUserTypes={includedUserTypes},includedUserRoles={includedUserRoles})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/authenticationMethods": {
"apiVersion": "v1.0-beta",
@@ -154,28 +106,12 @@
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/credentialUserRegistrationDetails": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/dailyPrintUsageByPrinter": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/dailyPrintUsageByUser": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/dailyPrintUsageByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/dailyPrintUsageByPrinter": {
"apiVersion": "v1.0-beta",
@@ -194,476 +130,472 @@
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/dailyPrintUsageSummariesByPrinter": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/dailyPrintUsageSummariesByUser": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.deviceConfigurationDeviceActivity()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.deviceConfigurationUserActivity()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getAzureADApplicationSignInSummary(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getAzureADFeatureUsage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getAzureADLicenseUsage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getAzureADUserFeatureUsage()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getCredentialUsageSummary(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getCredentialUserRegistrationCount()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageAppsUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageVersionsUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/microsoft.graph.getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getM365AppPlatformUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getM365AppUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getM365AppUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getM365AppUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageMailboxCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageQuotaStatusMailboxCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationCounts()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationsUserCounts()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationsUserDetail()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityGroupCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ServicesUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/microsoft.graph.getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getRelyingPartyDetailedSummary(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityPages(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsagePages(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageSiteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsDeviceUsageTotalUserCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsUserActivityDistributionTotalUserCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsUserActivityDistributionUserCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsUserActivityTotalCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
+ },
+ "/reports/microsoft.graph.getTeamsUserActivityTotalUserCounts(period='{period}')": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getTenantSecureScores(period={period})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/microsoft.graph.getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityDetail(date={date})": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityGroupCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentFailureDetails()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentFailureTrends()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentTopFailures()": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentTopFailures(period='{period}')": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/monthlyPrintUsageByPrinter": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/monthlyPrintUsageByUser": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
- },
- "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/monthlyPrintUsageByPrinter": {
"apiVersion": "v1.0-beta",
@@ -682,28 +614,28 @@
"originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/monthlyPrintUsageSummariesByPrinter": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/monthlyPrintUsageSummariesByUser": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/userCredentialUsageDetails": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
},
"/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}": {
- "originalLocation": "/openApiDocs/beta/Reports.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Reports.yml"
}
}
}
diff --git a/profiles/Reports/crawl-log-v1.0.json b/profiles/Reports/crawl-log-v1.0.json
index 28f0560561a..a1f5f8dc6b3 100644
--- a/profiles/Reports/crawl-log-v1.0.json
+++ b/profiles/Reports/crawl-log-v1.0.json
@@ -2,52 +2,44 @@
"resources": [],
"operations": {
"/auditLogs": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/directoryAudits": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/directoryAudits/{directoryAudit-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
+ },
+ "/auditLogs/provisioning": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
+ },
+ "/auditLogs/provisioning/{provisioningObjectSummary-id}": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/restrictedSignIns": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/restrictedSignIns/{restrictedSignIn-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/signIns": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/auditLogs/signIns/{signIn-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/dailyPrintUsageByPrinter": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/dailyPrintUsageByUser": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/dailyPrintUsageByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/dailyPrintUsageByPrinter": {
"apiVersion": "v1.0",
@@ -66,400 +58,388 @@
"originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.deviceConfigurationDeviceActivity()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.deviceConfigurationUserActivity()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageAppsUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getEmailAppUsageVersionsUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/microsoft.graph.getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageMailboxCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageQuotaStatusMailboxCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getMailboxUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationCounts()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationsUserCounts()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActivationsUserDetail()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ActiveUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityGroupCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365GroupsActivityStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOffice365ServicesUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageAccountDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getOneDriveUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/microsoft.graph.getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityPages(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageFileCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsagePages(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageSiteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSharePointSiteUsageStorage(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessParticipantActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getTeamsUserActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
- },
- "/reports/microsoft.graph.getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerActivityUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageDistributionUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerDeviceUsageUserDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityDetail(date={date})": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityDetail(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.getYammerGroupsActivityGroupCounts(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentFailureDetails()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentFailureDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentTopFailures()": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/microsoft.graph.managedDeviceEnrollmentTopFailures(period='{period}')": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/monthlyPrintUsageByPrinter": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/monthlyPrintUsageByUser": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
},
"/reports/monthlyPrintUsageByUser/{printUsageByUser-id}": {
- "originalLocation": "/openApiDocs/v1.0/Reports.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Reports.yml"
}
}
}
diff --git a/profiles/Reports/definitions/v1.0-beta.md b/profiles/Reports/definitions/v1.0-beta.md
index 533d9ea5f01..3b60925874f 100644
--- a/profiles/Reports/definitions/v1.0-beta.md
+++ b/profiles/Reports/definitions/v1.0-beta.md
@@ -124,11 +124,17 @@ profiles:
/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsDeviceUsageDistributionUserCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsDeviceUsageTotalUserCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsDeviceUsageUserCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(date={date}): v1.0-beta
/reports/microsoft.graph.getTeamsDeviceUsageUserDetail(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsUserActivityCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsUserActivityDistributionTotalUserCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsUserActivityDistributionUserCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsUserActivityTotalCounts(period='{period}'): v1.0-beta
+ /reports/microsoft.graph.getTeamsUserActivityTotalUserCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsUserActivityUserCounts(period='{period}'): v1.0-beta
/reports/microsoft.graph.getTeamsUserActivityUserDetail(date={date}): v1.0-beta
/reports/microsoft.graph.getTeamsUserActivityUserDetail(period='{period}'): v1.0-beta
diff --git a/profiles/Reports/definitions/v1.0.md b/profiles/Reports/definitions/v1.0.md
index c04dad918e0..14480f2ce00 100644
--- a/profiles/Reports/definitions/v1.0.md
+++ b/profiles/Reports/definitions/v1.0.md
@@ -10,6 +10,8 @@ profiles:
/auditLogs: v1.0
/auditLogs/directoryAudits: v1.0
/auditLogs/directoryAudits/{directoryAudit-id}: v1.0
+ /auditLogs/provisioning: v1.0
+ /auditLogs/provisioning/{provisioningObjectSummary-id}: v1.0
/auditLogs/restrictedSignIns: v1.0
/auditLogs/restrictedSignIns/{restrictedSignIn-id}: v1.0
/auditLogs/signIns: v1.0
diff --git a/profiles/Reports/readme.md b/profiles/Reports/readme.md
index 62f6a55fe94..9c040c9b747 100644
--- a/profiles/Reports/readme.md
+++ b/profiles/Reports/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/SchemaExtensions/crawl-log-v1.0-beta.json b/profiles/SchemaExtensions/crawl-log-v1.0-beta.json
index f19c9e08e53..4a10d4ea3bf 100644
--- a/profiles/SchemaExtensions/crawl-log-v1.0-beta.json
+++ b/profiles/SchemaExtensions/crawl-log-v1.0-beta.json
@@ -2,12 +2,12 @@
"resources": [],
"operations": {
"/schemaExtensions": {
- "originalLocation": "/openApiDocs/beta/SchemaExtensions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/SchemaExtensions.yml"
},
"/schemaExtensions/{schemaExtension-id}": {
- "originalLocation": "/openApiDocs/beta/SchemaExtensions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/SchemaExtensions.yml"
}
}
}
diff --git a/profiles/SchemaExtensions/crawl-log-v1.0.json b/profiles/SchemaExtensions/crawl-log-v1.0.json
index ef036d9d4f2..d179217e63d 100644
--- a/profiles/SchemaExtensions/crawl-log-v1.0.json
+++ b/profiles/SchemaExtensions/crawl-log-v1.0.json
@@ -2,12 +2,12 @@
"resources": [],
"operations": {
"/schemaExtensions": {
- "originalLocation": "/openApiDocs/v1.0/SchemaExtensions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/SchemaExtensions.yml"
},
"/schemaExtensions/{schemaExtension-id}": {
- "originalLocation": "/openApiDocs/v1.0/SchemaExtensions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/SchemaExtensions.yml"
}
}
}
diff --git a/profiles/SchemaExtensions/readme.md b/profiles/SchemaExtensions/readme.md
index 98ecdee0e9e..37e0d5fa9b8 100644
--- a/profiles/SchemaExtensions/readme.md
+++ b/profiles/SchemaExtensions/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Search/crawl-log-v1.0-beta.json b/profiles/Search/crawl-log-v1.0-beta.json
index 6ac0dfaea73..af76f9810ad 100644
--- a/profiles/Search/crawl-log-v1.0-beta.json
+++ b/profiles/Search/crawl-log-v1.0-beta.json
@@ -2,24 +2,24 @@
"resources": [],
"operations": {
"/external": {
- "originalLocation": "/openApiDocs/beta/Search.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Search.yml"
},
"/external/connections": {
- "originalLocation": "/openApiDocs/beta/Search.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Search.yml"
},
"/external/connections/{externalConnection-id}": {
- "originalLocation": "/openApiDocs/beta/Search.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Search.yml"
},
"/search": {
- "originalLocation": "/openApiDocs/beta/Search.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Search.yml"
},
"/search/microsoft.graph.query": {
- "originalLocation": "/openApiDocs/beta/Search.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Search.yml"
}
}
}
diff --git a/profiles/Search/crawl-log-v1.0.json b/profiles/Search/crawl-log-v1.0.json
index 66e8b83bacd..386756be941 100644
--- a/profiles/Search/crawl-log-v1.0.json
+++ b/profiles/Search/crawl-log-v1.0.json
@@ -2,12 +2,12 @@
"resources": [],
"operations": {
"/search": {
- "originalLocation": "/openApiDocs/v1.0/Search.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Search.yml"
},
"/search/microsoft.graph.query": {
- "originalLocation": "/openApiDocs/v1.0/Search.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Search.yml"
}
}
}
diff --git a/profiles/Search/readme.md b/profiles/Search/readme.md
index 1a47a9335e0..8e39470bfd6 100644
--- a/profiles/Search/readme.md
+++ b/profiles/Search/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Security/crawl-log-v1.0-beta.json b/profiles/Security/crawl-log-v1.0-beta.json
index f2596df7e95..6dbbfb8f46b 100644
--- a/profiles/Security/crawl-log-v1.0-beta.json
+++ b/profiles/Security/crawl-log-v1.0-beta.json
@@ -2,128 +2,128 @@
"resources": [],
"operations": {
"/security": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/alerts": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/alerts/{alert-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/alerts/microsoft.graph.updateAlerts": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/cloudAppSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/domainSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/domainSecurityProfiles/{domainSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/fileSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/fileSecurityProfiles/{fileSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/hostSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/hostSecurityProfiles/{hostSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/ipSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/ipSecurityProfiles/{ipSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/providerTenantSettings": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/providerTenantSettings/{providerTenantSetting-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/secureScoreControlProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/secureScoreControlProfiles/{secureScoreControlProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/secureScores": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/secureScores/{secureScore-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/securityActions": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/securityActions/{securityAction-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/securityActions/{securityAction-id}/microsoft.graph.cancelSecurityAction": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators/{tiIndicator-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators/microsoft.graph.deleteTiIndicators": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators/microsoft.graph.deleteTiIndicatorsByExternalId": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators/microsoft.graph.submitTiIndicators": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/tiIndicators/microsoft.graph.updateTiIndicators": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/userSecurityProfiles": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
},
"/security/userSecurityProfiles/{userSecurityProfile-id}": {
- "originalLocation": "/openApiDocs/beta/Security.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Security.yml"
}
}
}
diff --git a/profiles/Security/crawl-log-v1.0.json b/profiles/Security/crawl-log-v1.0.json
index cb5691c8864..d715828118b 100644
--- a/profiles/Security/crawl-log-v1.0.json
+++ b/profiles/Security/crawl-log-v1.0.json
@@ -2,32 +2,32 @@
"resources": [],
"operations": {
"/security": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/alerts": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/alerts/{alert-id}": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/secureScoreControlProfiles": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/secureScoreControlProfiles/{secureScoreControlProfile-id}": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/secureScores": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
},
"/security/secureScores/{secureScore-id}": {
- "originalLocation": "/openApiDocs/v1.0/Security.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Security.yml"
}
}
}
diff --git a/profiles/Security/readme.md b/profiles/Security/readme.md
index 5d317e3966d..35f913e709d 100644
--- a/profiles/Security/readme.md
+++ b/profiles/Security/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Sites/crawl-log-v1.0-beta.json b/profiles/Sites/crawl-log-v1.0-beta.json
index 485e23b1a08..bfc43fdc7ac 100644
--- a/profiles/Sites/crawl-log-v1.0-beta.json
+++ b/profiles/Sites/crawl-log-v1.0-beta.json
@@ -2,44 +2,36 @@
"resources": [],
"operations": {
"/groups/{group-id}/sites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/groups/{group-id}/sites/{site-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/analytics": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn": {
"apiVersion": "v1.0-beta",
@@ -50,52 +42,12 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/base/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/base": {
"apiVersion": "v1.0-beta",
@@ -138,60 +90,12 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/{contentType-id}/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/contentTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/columnPositions": {
"apiVersion": "v1.0-beta",
@@ -242,24 +146,16 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/drive": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/drives": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/externalColumns": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/externalColumns/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/externalColumns": {
"apiVersion": "v1.0-beta",
@@ -270,100 +166,92 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/activities": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/activities/{itemActivityOLD-id1}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/analytics": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/driveItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/fields": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/versions": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/activities/{itemActivityOLD-id}/listItem/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn": {
"apiVersion": "v1.0-beta",
@@ -374,52 +262,12 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base": {
"apiVersion": "v1.0-beta",
@@ -462,60 +310,12 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.associateWithHubSites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.copyToDefaultContentLocation": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.isPublished()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/microsoft.graph.unpublish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/lists/{list-id}/contentTypes/microsoft.graph.addCopy": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions": {
"apiVersion": "v1.0-beta",
@@ -566,564 +366,560 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/drive": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/microsoft.graph.createLink": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/subscriptions": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
- },
- "/sites/{site-id}/microsoft.graph.getApplicableContentTypesForList(listId='{listId}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getApplicableContentTypesForList(listId='{listId}')": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getByPath(path='{path}')": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/pages": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/pages/{sitePage-id}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/pages/{sitePage-id}/microsoft.graph.publish": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
- "/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "/sites/{site-id}/permissions": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
- "/sites/{site-id}/permissions/{permission-id}/microsoft.graph.revokeGrants": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "/sites/{site-id}/permissions/{permission-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant": {
"apiVersion": "v1.0-beta",
@@ -1134,32 +930,32 @@
"originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/sites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/{site-id}/sites/{site-id1}": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/sites/microsoft.graph.remove": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/users/{user-id}/followedSites": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
},
"/users/{user-id}/followedSites/$ref": {
- "originalLocation": "/openApiDocs/beta/Sites.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Sites.yml"
}
}
}
diff --git a/profiles/Sites/crawl-log-v1.0.json b/profiles/Sites/crawl-log-v1.0.json
index f2ad6075549..331072cb4d8 100644
--- a/profiles/Sites/crawl-log-v1.0.json
+++ b/profiles/Sites/crawl-log-v1.0.json
@@ -2,636 +2,640 @@
"resources": [],
"operations": {
"/groups/{group-id}/sites": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/groups/{group-id}/sites/{site-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/analytics": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/columns": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/contentTypes": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/drive": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/drives": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/drives/{drive-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/columns": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/drive": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/microsoft.graph.getActivitiesByInterval()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/microsoft.graph.restoreVersion": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/subscriptions": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getActivitiesByInterval()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/microsoft.graph.getByPath(path='{path}')": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
- "/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "/sites/{site-id}/permissions": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
+ },
+ "/sites/{site-id}/permissions/{permission-id}": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/sites": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/{site-id}/sites/{site-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/sites/microsoft.graph.remove": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/users/{user-id}/followedSites": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
},
"/users/{user-id}/followedSites/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Sites.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Sites.yml"
}
}
}
diff --git a/profiles/Sites/definitions/v1.0-beta.md b/profiles/Sites/definitions/v1.0-beta.md
index 4021ada05f4..89ad2a876c9 100644
--- a/profiles/Sites/definitions/v1.0-beta.md
+++ b/profiles/Sites/definitions/v1.0-beta.md
@@ -314,6 +314,8 @@ profiles:
/sites/{site-id}/pages: v1.0-beta
/sites/{site-id}/pages/{sitePage-id}: v1.0-beta
/sites/{site-id}/pages/{sitePage-id}/microsoft.graph.publish: v1.0-beta
+ /sites/{site-id}/permissions: v1.0-beta
+ /sites/{site-id}/permissions/{permission-id}: v1.0-beta
/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant: v1.0-beta
/sites/{site-id}/permissions/{permission-id}/microsoft.graph.revokeGrants: v1.0-beta
/sites/{site-id}/sites: v1.0-beta
diff --git a/profiles/Sites/definitions/v1.0.md b/profiles/Sites/definitions/v1.0.md
index 094c644109a..dee7997e068 100644
--- a/profiles/Sites/definitions/v1.0.md
+++ b/profiles/Sites/definitions/v1.0.md
@@ -233,6 +233,8 @@ profiles:
: v1.0
? /sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup
: v1.0
+ /sites/{site-id}/permissions: v1.0
+ /sites/{site-id}/permissions/{permission-id}: v1.0
/sites/{site-id}/permissions/{permission-id}/microsoft.graph.grant: v1.0
/sites/{site-id}/sites: v1.0
/sites/{site-id}/sites/{site-id1}: v1.0
diff --git a/profiles/Sites/readme.md b/profiles/Sites/readme.md
index ee82a754997..70be5af5fdd 100644
--- a/profiles/Sites/readme.md
+++ b/profiles/Sites/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Teams/crawl-log-v1.0-beta.json b/profiles/Teams/crawl-log-v1.0-beta.json
index 181e57133c6..df80a0b78db 100644
--- a/profiles/Teams/crawl-log-v1.0-beta.json
+++ b/profiles/Teams/crawl-log-v1.0-beta.json
@@ -2,540 +2,540 @@
"resources": [],
"operations": {
"/appCatalogs/teamsApps": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
- "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot": {
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/microsoft.graph.upgrade": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/members": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/members/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}/hostedContents": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}/replies": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/microsoft.graph.sendActivityNotification": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/chats/{chat-id}/permissionGrants": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
+ },
+ "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/tabs": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/microsoft.graph.allMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/chats/microsoft.graph.getAllMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/groups/{group-id}/team": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/filesFolder": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/filesFolder/content": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/members": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/members/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/microsoft.graph.completeMigration": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/microsoft.graph.allMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/channels/microsoft.graph.getAllMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/group": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/group/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/microsoft.graph.upgrade": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/members": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/members/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.archive": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.clone": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.completeMigration": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.sendActivityNotification": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.unarchive": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/operations": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/operations/{teamsAsyncOperation-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/owners": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/owners/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/photo": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/photo/$value": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/filesFolder": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/filesFolder/content": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/members": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/members/microsoft.graph.add": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/microsoft.graph.completeMigration": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/microsoft.graph.share": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/offerShiftRequests": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/openShiftChangeRequests": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/openShifts": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/openShifts/{openShift-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/schedulingGroups": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/shifts": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/shifts/{shift-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/swapShiftsChangeRequests": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/{timeCard-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/{timeCard-id}/microsoft.graph.clockOut": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/{timeCard-id}/microsoft.graph.confirm": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/{timeCard-id}/microsoft.graph.endBreak": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/{timeCard-id}/microsoft.graph.startBreak": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeCards/microsoft.graph.clockIn": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffReasons": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffRequests": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timesOff": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/schedule/timesOff/{timeOff-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/tags": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/tags/{teamworkTag-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/tags/{teamworkTag-id}/members": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
- },
- "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/tags": {
"apiVersion": "v1.0-beta",
@@ -554,68 +554,68 @@
"originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/template": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/{team-id}/template/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/microsoft.graph.allMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teams/microsoft.graph.getAllMessages()": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teamwork": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teamwork/workforceIntegrations": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/teamwork/workforceIntegrations/{workforceIntegration-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/chats": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/chats/{chat-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/joinedTeams": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/joinedTeams/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/teamwork": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref": {
- "originalLocation": "/openApiDocs/beta/Teams.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Teams.yml"
}
}
}
diff --git a/profiles/Teams/crawl-log-v1.0.json b/profiles/Teams/crawl-log-v1.0.json
index 4070170606a..382fa2411c2 100644
--- a/profiles/Teams/crawl-log-v1.0.json
+++ b/profiles/Teams/crawl-log-v1.0.json
@@ -2,122 +2,102 @@
"resources": [],
"operations": {
"/appCatalogs/teamsApps": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/microsoft.graph.upgrade": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/{chat-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/chats/{chat-id}/tabs": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/chats/{chat-id}/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps": {
+ "/chats/{chat-id}/messages": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}": {
+ "/chats/{chat-id}/messages/{chatMessage-id}": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/microsoft.graph.upgrade": {
+ "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp": {
+ "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref": {
+ "/chats/{chat-id}/messages/{chatMessage-id}/replies": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition": {
+ "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref": {
+ "/chats/{chat-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/members": {
+ "/chats/{chat-id}/messages/microsoft.graph.delta()": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
- "/chats/{chat-id}/members/{conversationMember-id}": {
+ "/chats/{chat-id}/microsoft.graph.sendActivityNotification": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
@@ -138,348 +118,372 @@
"originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/chats/microsoft.graph.getAllMessages()": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/groups/{group-id}/team": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/filesFolder": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/filesFolder/content": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/channels/{channel-id}/messages/microsoft.graph.delta()": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/channels/{channel-id}/microsoft.graph.completeMigration": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/group": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/group/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/microsoft.graph.upgrade": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/members": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.archive": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.clone": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/microsoft.graph.completeMigration": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/microsoft.graph.sendActivityNotification": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/microsoft.graph.unarchive": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/operations": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/operations/{teamsAsyncOperation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/filesFolder": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/filesFolder/content": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/members": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/members/{conversationMember-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
- },
- "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/microsoft.graph.delta()": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/primaryChannel/messages/microsoft.graph.delta()": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
+ },
+ "/teams/{team-id}/primaryChannel/microsoft.graph.completeMigration": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/microsoft.graph.share": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/offerShiftRequests": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/openShiftChangeRequests": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/openShifts": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/openShifts/{openShift-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/schedulingGroups": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/shifts": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/shifts/{shift-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/swapShiftsChangeRequests": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffReasons": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffRequests": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timesOff": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/schedule/timesOff/{timeOff-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/template": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/{team-id}/template/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teams/microsoft.graph.getAllMessages()": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teamwork": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teamwork/workforceIntegrations": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/teamwork/workforceIntegrations/{workforceIntegration-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/joinedTeams": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/joinedTeams/{team-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/teamwork": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
},
"/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Teams.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Teams.yml"
}
}
}
diff --git a/profiles/Teams/definitions/v1.0-beta.md b/profiles/Teams/definitions/v1.0-beta.md
index 1af24b5f26e..f971409fa5f 100644
--- a/profiles/Teams/definitions/v1.0-beta.md
+++ b/profiles/Teams/definitions/v1.0-beta.md
@@ -12,6 +12,12 @@ profiles:
/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions: v1.0-beta
/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}: v1.0-beta
/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent: v1.0-beta
+ /appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value: v1.0-beta
/chats: v1.0-beta
/chats/{chat-id}: v1.0-beta
/chats/{chat-id}/installedApps: v1.0-beta
@@ -28,12 +34,13 @@ profiles:
/chats/{chat-id}/messages/{chatMessage-id}: v1.0-beta
/chats/{chat-id}/messages/{chatMessage-id}/hostedContents: v1.0-beta
/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0-beta
- /chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: v1.0-beta
/chats/{chat-id}/messages/{chatMessage-id}/replies: v1.0-beta
/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0-beta
/chats/{chat-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0-beta
/chats/{chat-id}/messages/microsoft.graph.delta(): v1.0-beta
/chats/{chat-id}/microsoft.graph.sendActivityNotification: v1.0-beta
+ /chats/{chat-id}/permissionGrants: v1.0-beta
+ /chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}: v1.0-beta
/chats/{chat-id}/tabs: v1.0-beta
/chats/{chat-id}/tabs/{teamsTab-id}: v1.0-beta
/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp: v1.0-beta
@@ -54,7 +61,6 @@ profiles:
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}: v1.0-beta
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents: v1.0-beta
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0-beta
- /teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: v1.0-beta
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies: v1.0-beta
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0-beta
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0-beta
@@ -99,7 +105,6 @@ profiles:
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}: v1.0-beta
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents: v1.0-beta
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0-beta
- /teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: v1.0-beta
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies: v1.0-beta
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0-beta
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0-beta
diff --git a/profiles/Teams/definitions/v1.0.md b/profiles/Teams/definitions/v1.0.md
index cdf12d2eb62..e4b5763a30b 100644
--- a/profiles/Teams/definitions/v1.0.md
+++ b/profiles/Teams/definitions/v1.0.md
@@ -23,6 +23,15 @@ profiles:
/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition/$ref: v1.0
/chats/{chat-id}/members: v1.0
/chats/{chat-id}/members/{conversationMember-id}: v1.0
+ /chats/{chat-id}/messages: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}/hostedContents: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}/replies: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0
+ /chats/{chat-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0
+ /chats/{chat-id}/messages/microsoft.graph.delta(): v1.0
+ /chats/{chat-id}/microsoft.graph.sendActivityNotification: v1.0
/chats/{chat-id}/tabs: v1.0
/chats/{chat-id}/tabs/{teamsTab-id}: v1.0
/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp: v1.0
@@ -41,9 +50,11 @@ profiles:
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}: v1.0
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents: v1.0
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0
- /teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: v1.0
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies: v1.0
/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0
+ /teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0
+ /teams/{team-id}/channels/{channel-id}/messages/microsoft.graph.delta(): v1.0
+ /teams/{team-id}/channels/{channel-id}/microsoft.graph.completeMigration: v1.0
/teams/{team-id}/channels/{channel-id}/tabs: v1.0
/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}: v1.0
/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp: v1.0
@@ -61,6 +72,8 @@ profiles:
/teams/{team-id}/members/{conversationMember-id}: v1.0
/teams/{team-id}/microsoft.graph.archive: v1.0
/teams/{team-id}/microsoft.graph.clone: v1.0
+ /teams/{team-id}/microsoft.graph.completeMigration: v1.0
+ /teams/{team-id}/microsoft.graph.sendActivityNotification: v1.0
/teams/{team-id}/microsoft.graph.unarchive: v1.0
/teams/{team-id}/operations: v1.0
/teams/{team-id}/operations/{teamsAsyncOperation-id}: v1.0
@@ -73,9 +86,11 @@ profiles:
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}: v1.0
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents: v1.0
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: v1.0
- /teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: v1.0
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies: v1.0
/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}: v1.0
+ /teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/microsoft.graph.delta(): v1.0
+ /teams/{team-id}/primaryChannel/messages/microsoft.graph.delta(): v1.0
+ /teams/{team-id}/primaryChannel/microsoft.graph.completeMigration: v1.0
/teams/{team-id}/primaryChannel/tabs: v1.0
/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}: v1.0
/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp: v1.0
diff --git a/profiles/Teams/readme.md b/profiles/Teams/readme.md
index 24c3a0767c3..2434f0e4f21 100644
--- a/profiles/Teams/readme.md
+++ b/profiles/Teams/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Users.Actions/crawl-log-v1.0-beta.json b/profiles/Users.Actions/crawl-log-v1.0-beta.json
index a5c868a9311..fd647b3795c 100644
--- a/profiles/Users.Actions/crawl-log-v1.0-beta.json
+++ b/profiles/Users.Actions/crawl-log-v1.0-beta.json
@@ -2,936 +2,920 @@
"resources": [],
"operations": {
"/users/{user-id}/authentication/methods/{authenticationMethod-id}/microsoft.graph.disableSmsSignIn": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/authentication/methods/{authenticationMethod-id}/microsoft.graph.enableSmsSignIn": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/authentication/methods/{authenticationMethod-id}/microsoft.graph.resetPassword": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/microsoft.graph.setPriority": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/deviceEnrollmentConfigurations/microsoft.graph.hasPayloadLinks": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createForward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createReply": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createReplyAll": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.accept": {
"apiVersion": "v1.0-beta",
@@ -946,196 +930,180 @@
"originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.replyAll": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.unsubscribe": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.createDeviceLogCollectionRequest": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.enableLostMode": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.overrideComplianceState": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.playLostModeSound": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.revokeAppleVppLicenses": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rotateBitLockerKeys": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rotateFileVaultKey": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.sendCustomNotificationToCompanyPortal": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.setDeviceName": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.triggerConfigurationManagerAction": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/microsoft.graph.executeAction": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createForward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createReply": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createReplyAll": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.eventMessageRequest/microsoft.graph.accept": {
"apiVersion": "v1.0-beta",
@@ -1150,580 +1118,588 @@
"originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.replyAll": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.unsubscribe": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
- },
- "/users/{user-id}/microsoft.graph.activateServicePlan": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.activateServicePlan": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.assignLicense": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.changePassword": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.exportPersonalData": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.findMeetingTimes": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMailTips": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.invalidateAllRefreshTokens": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.removeAllDevicesFromManagement": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.reprocessLicenseAssignment": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.revokeSignInSessions": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.sendMail": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.translateExchangeIds": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.unblockManagedApps": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.wipeAndBlockManagedApps": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.wipeManagedAppRegistrationByDeviceTag": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.wipeManagedAppRegistrationsByDeviceTag": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/microsoft.graph.createDownloadUrl": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/onlineMeetings/microsoft.graph.createOrGet": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/microsoft.graph.complete": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/microsoft.graph.complete": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/microsoft.graph.complete": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/definition/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.applyDecisions": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
+ },
+ "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.resetDecisions": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.sendReminder": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.stop": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
+ },
+ "/users/{user-id}/presence/microsoft.graph.clearPresence": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
+ },
+ "/users/{user-id}/presence/microsoft.graph.setPresence": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/{user-id}/teamwork/microsoft.graph.sendActivityNotification": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/microsoft.graph.getUserOwnedObjects": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
},
"/users/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/beta/Users.Actions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Actions.yml"
}
}
}
diff --git a/profiles/Users.Actions/crawl-log-v1.0.json b/profiles/Users.Actions/crawl-log-v1.0.json
index 06650988312..7252926ca89 100644
--- a/profiles/Users.Actions/crawl-log-v1.0.json
+++ b/profiles/Users.Actions/crawl-log-v1.0.json
@@ -2,992 +2,640 @@
"resources": [],
"operations": {
"/users/{user-id}/calendar/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/calendarView/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/microsoft.graph.getSchedule": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/instances/{event-id1}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.dismissReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.snoozeReminder": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/events/{event-id}/microsoft.graph.tentativelyAccept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/microsoft.graph.commit": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.mobileAppContentFile/microsoft.graph.renewUpload": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.printDocument/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.printJob/microsoft.graph.abort": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.printJob/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.printJob/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.printJob/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.scheduleChangeRequest/microsoft.graph.approve": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.scheduleChangeRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.delete": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.insert": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.merge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.unmerge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRangeFill/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitColumns": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitRows": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRangeSort/microsoft.graph.apply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.commit": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.renewUpload": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.printDocument/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.abort": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.approve": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.delete": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.insert": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.merge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.unmerge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRangeFill/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitColumns": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitRows": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRangeSort/microsoft.graph.apply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.commit": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.renewUpload": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.printDocument/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.printJob/microsoft.graph.abort": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.printJob/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.printJob/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.printJob/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.approve": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.delete": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.insert": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.merge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.unmerge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRangeFill/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitColumns": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitRows": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRangeSort/microsoft.graph.apply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.managedAppProtection/microsoft.graph.targetApps": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.commit": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.mobileAppContentFile/microsoft.graph.renewUpload": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.printDocument/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.abort": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.cancel": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.redirect": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.printJob/microsoft.graph.start": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.approve": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.scheduleChangeRequest/microsoft.graph.decline": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.targetedManagedAppProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.windowsInformationProtection/microsoft.graph.assign": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.delete": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.insert": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.merge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.unmerge": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRangeFill/microsoft.graph.clear": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitColumns": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRangeFormat/microsoft.graph.autofitRows": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRangeSort/microsoft.graph.apply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
"apiVersion": "v1.0",
@@ -1342,660 +990,656 @@
"originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createForward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createReply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.createReplyAll": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.replyAll": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.bypassActivationLock": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.cleanWindowsDevice": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.disableLostMode": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.locateDevice": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.logoutSharedAppleDeviceActiveUser": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.rebootNow": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.recoverPasscode": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.remoteLock": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteAssistance": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.retire": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.shutDown": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.syncDevice": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.updateWindowsDeviceAccount": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderScan": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.windowsDefenderUpdateSignatures": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.wipe": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/attachments/microsoft.graph.createUploadSession": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.calendarSharingMessage/microsoft.graph.accept": {
"apiVersion": "v1.0",
"originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.copy": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createForward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createReply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.createReplyAll": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.forward": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.move": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.reply": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.replyAll": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/messages/{message-id}/microsoft.graph.send": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.assignLicense": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.changePassword": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.checkMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.checkMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.exportPersonalData": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.findMeetingTimes": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMailTips": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMemberGroups": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.getMemberObjects": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.removeAllDevicesFromManagement": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.reprocessLicenseAssignment": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.restore": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.revokeSignInSessions": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.sendMail": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.translateExchangeIds": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/microsoft.graph.wipeManagedAppRegistrationsByDeviceTag": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/notebooks/microsoft.graph.getNotebookFromWebUrl": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/parentSectionGroup/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.copyToSection": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.onenotePatchContent": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/microsoft.graph.copyNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/parentNotebook/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToNotebook": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/{user-id}/onlineMeetings/microsoft.graph.createOrGet": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
+ },
+ "/users/{user-id}/teamwork/microsoft.graph.sendActivityNotification": {
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/microsoft.graph.getAvailableExtensionProperties": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/microsoft.graph.getByIds": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
},
"/users/microsoft.graph.validateProperties": {
- "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Actions.yml"
}
}
}
diff --git a/profiles/Users.Actions/definitions/v1.0-beta.md b/profiles/Users.Actions/definitions/v1.0-beta.md
index 2be051ad78d..f1213c3bf6b 100644
--- a/profiles/Users.Actions/definitions/v1.0-beta.md
+++ b/profiles/Users.Actions/definitions/v1.0-beta.md
@@ -534,9 +534,12 @@ profiles:
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/definition/microsoft.graph.stop: v1.0-beta
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.acceptRecommendations: v1.0-beta
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.applyDecisions: v1.0-beta
+ /users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.batchRecordDecisions: v1.0-beta
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.resetDecisions: v1.0-beta
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.sendReminder: v1.0-beta
/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/microsoft.graph.stop: v1.0-beta
+ /users/{user-id}/presence/microsoft.graph.clearPresence: v1.0-beta
+ /users/{user-id}/presence/microsoft.graph.setPresence: v1.0-beta
/users/{user-id}/teamwork/microsoft.graph.sendActivityNotification: v1.0-beta
/users/microsoft.graph.getByIds: v1.0-beta
/users/microsoft.graph.getUserOwnedObjects: v1.0-beta
diff --git a/profiles/Users.Actions/definitions/v1.0.md b/profiles/Users.Actions/definitions/v1.0.md
index d57cfb1ba75..d5bdff2ad78 100644
--- a/profiles/Users.Actions/definitions/v1.0.md
+++ b/profiles/Users.Actions/definitions/v1.0.md
@@ -513,6 +513,7 @@ profiles:
? /users/{user-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup/sections/{onenoteSection-id1}/microsoft.graph.copyToSectionGroup
: v1.0
/users/{user-id}/onlineMeetings/microsoft.graph.createOrGet: v1.0
+ /users/{user-id}/teamwork/microsoft.graph.sendActivityNotification: v1.0
/users/microsoft.graph.getAvailableExtensionProperties: v1.0
/users/microsoft.graph.getByIds: v1.0
/users/microsoft.graph.validateProperties: v1.0
diff --git a/profiles/Users.Actions/readme.md b/profiles/Users.Actions/readme.md
index 72db40d5d27..e912d461c06 100644
--- a/profiles/Users.Actions/readme.md
+++ b/profiles/Users.Actions/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Users.Functions/crawl-log-v1.0-beta.json b/profiles/Users.Functions/crawl-log-v1.0-beta.json
index da588de3dbe..7809535b9ca 100644
--- a/profiles/Users.Functions/crawl-log-v1.0-beta.json
+++ b/profiles/Users.Functions/crawl-log-v1.0-beta.json
@@ -2,340 +2,344 @@
"resources": [],
"operations": {
"/users/{user-id}/activities/microsoft.graph.recent()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
- "/users/{user-id}/approvals/microsoft.graph.filterByCurrentUser(on={on})": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "/users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
+ },
+ "/users/{user-id}/appConsentRequestsForApproval/microsoft.graph.filterByCurrentUser(on={on})": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/approvals/microsoft.graph.filterByCurrentUser(on={on})": {
"apiVersion": "v1.0-beta",
"originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/exceptionOccurrences/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/managedAppRegistrations/microsoft.graph.getUserIdsWithFlaggedAppRegistration()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getFileVaultKey()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/managedDevices/{managedDevice-id}/microsoft.graph.getNonCompliantSettings()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.exportDeviceAndAppManagementData()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.exportDeviceAndAppManagementData(skip={skip},top={top})": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.findRoomLists()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.findRooms()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.findRooms(RoomList='{RoomList}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getEffectiveDeviceEnrollmentConfigurations()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getLoggedOnManagedDevices()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedAppDiagnosticStatuses()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedAppPolicies()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedDevicesWithAppFailures()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedDevicesWithFailedOrPendingApps()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.isManagedAppUserBlocked()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedLanguages()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedTimeZones()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedTimeZones(TimeZoneStandard={TimeZoneStandard})": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/planner/all/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/{user-id}/todo/lists/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
},
"/users/microsoft.graph.getManagedAppBlockedUsers()": {
- "originalLocation": "/openApiDocs/beta/Users.Functions.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.Functions.yml"
}
}
}
diff --git a/profiles/Users.Functions/crawl-log-v1.0.json b/profiles/Users.Functions/crawl-log-v1.0.json
index 80d21f65871..e7467a94705 100644
--- a/profiles/Users.Functions/crawl-log-v1.0.json
+++ b/profiles/Users.Functions/crawl-log-v1.0.json
@@ -2,532 +2,148 @@
"resources": [],
"operations": {
"/users/{user-id}/activities/microsoft.graph.recent()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars/{calendar-id}/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendars/{calendar-id}/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarView/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/{contactFolder-id}/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/contactFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/contacts/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/calendarView/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/events/{event-id}/instances/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/events/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.boundingRect(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.cell(row={row},column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.column(column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.columnsAfter()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.columnsAfter(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.columnsBefore()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.columnsBefore(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.entireColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.entireRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.intersection(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.lastCell()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.lastColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.lastRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.row(row={row})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.rowsAbove()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.rowsAbove(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.rowsBelow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.rowsBelow(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.usedRange()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.usedRange(valuesOnly={valuesOnly})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.visibleView()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRangeView/microsoft.graph.range()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.boundingRect(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.cell(row={row},column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.column(column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.intersection(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastCell()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.row(row={row})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange(valuesOnly={valuesOnly})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.visibleView()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/shared/{sharedInsight-id}/resource/microsoft.graph.workbookRangeView/microsoft.graph.range()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.boundingRect(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.cell(row={row},column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.column(column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.intersection(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastCell()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.row(row={row})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange(valuesOnly={valuesOnly})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRange/microsoft.graph.visibleView()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/trending/{trending-id}/resource/microsoft.graph.workbookRangeView/microsoft.graph.range()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.boundingRect(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.cell(row={row},column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.column(column={column})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsAfter(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.columnsBefore(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.entireRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.intersection(anotherRange='{anotherRange}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastCell()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastColumn()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.lastRow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.offsetRange(rowOffset={rowOffset},columnOffset={columnOffset})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.row(row={row})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsAbove(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.rowsBelow(count={count})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.usedRange(valuesOnly={valuesOnly})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRange/microsoft.graph.visibleView()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
- },
- "/users/{user-id}/insights/used/{usedInsight-id}/resource/microsoft.graph.workbookRangeView/microsoft.graph.range()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod/microsoft.graph.workbookRange/microsoft.graph.boundingRect(anotherRange='{anotherRange}')": {
"apiVersion": "v1.0",
@@ -914,100 +530,100 @@
"originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/{mailFolder-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/mailFolders/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/managedAppRegistrations/microsoft.graph.getUserIdsWithFlaggedAppRegistration()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/messages/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedAppDiagnosticStatuses()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.getManagedAppPolicies()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/microsoft.graph.reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/notebooks/microsoft.graph.getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/pages/{onenotePage-id}/parentSection/pages/{onenotePage-id1}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/microsoft.graph.preview()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedLanguages()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedTimeZones()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/outlook/microsoft.graph.supportedTimeZones(TimeZoneStandard={TimeZoneStandard})": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/{user-id}/todo/lists/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
},
"/users/microsoft.graph.delta()": {
- "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.Functions.yml"
}
}
}
diff --git a/profiles/Users.Functions/definitions/v1.0-beta.md b/profiles/Users.Functions/definitions/v1.0-beta.md
index 3ee9d289eaf..1945e3f7409 100644
--- a/profiles/Users.Functions/definitions/v1.0-beta.md
+++ b/profiles/Users.Functions/definitions/v1.0-beta.md
@@ -8,6 +8,9 @@ profiles:
resources: {}
operations:
/users/{user-id}/activities/microsoft.graph.recent(): v1.0-beta
+ ? /users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/microsoft.graph.filterByCurrentUser(on={on})
+ : v1.0-beta
+ /users/{user-id}/appConsentRequestsForApproval/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/users/{user-id}/approvals/microsoft.graph.filterByCurrentUser(on={on}): v1.0-beta
/users/{user-id}/calendar/calendarView/{event-id}/calendar/microsoft.graph.allowedCalendarSharingRoles(User='{User}'): v1.0-beta
/users/{user-id}/calendar/calendarView/{event-id}/exceptionOccurrences/microsoft.graph.delta(): v1.0-beta
diff --git a/profiles/Users.Functions/readme.md b/profiles/Users.Functions/readme.md
index 28ee9c42b6b..20e0d2731b1 100644
--- a/profiles/Users.Functions/readme.md
+++ b/profiles/Users.Functions/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/profiles/Users/crawl-log-v1.0-beta.json b/profiles/Users/crawl-log-v1.0-beta.json
index 21f53dd5286..2c8e13e0a64 100644
--- a/profiles/Users/crawl-log-v1.0-beta.json
+++ b/profiles/Users/crawl-log-v1.0-beta.json
@@ -2,340 +2,352 @@
"resources": [],
"operations": {
"/users": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/createdObjects": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/createdObjects/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/directReports": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/directReports/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/licenseDetails": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/licenseDetails/{licenseDetails-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/manager": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/manager/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/memberOf": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/notifications": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/notifications/{notification-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
+ },
+ "/users/{user-id}/oauth2PermissionGrants": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
+ },
+ "/users/{user-id}/oauth2PermissionGrants/$ref": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/masterCategories": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/masterCategories/{outlookCategory-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/multiValueExtendedProperties/{multiValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/outlook/tasks/{outlookTask-id}/singleValueExtendedProperties/{singleValueLegacyExtendedProperty-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/ownedDevices": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/ownedDevices/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/ownedObjects": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/ownedObjects/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/photo": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/photo/$value": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/photos": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/photos/{profilePhoto-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/photos/{profilePhoto-id}/$value": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/registeredDevices": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/registeredDevices/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/settings": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
+ },
+ "/users/{user-id}/settings/itemInsights": {
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/settings/regionalAndLanguageSettings": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/settings/shiftPreferences": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
},
"/users/{user-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/beta/Users.yml",
- "apiVersion": "v1.0-beta"
+ "apiVersion": "v1.0-beta",
+ "originalLocation": "/openApiDocs/beta/Users.yml"
}
}
}
diff --git a/profiles/Users/crawl-log-v1.0.json b/profiles/Users/crawl-log-v1.0.json
index ad622aa68c1..732ef76af95 100644
--- a/profiles/Users/crawl-log-v1.0.json
+++ b/profiles/Users/crawl-log-v1.0.json
@@ -2,184 +2,184 @@
"resources": [],
"operations": {
"/users": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/createdObjects": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/createdObjects/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/directReports": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/directReports/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/licenseDetails": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/licenseDetails/{licenseDetails-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/manager": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/manager/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/memberOf": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/memberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/oauth2PermissionGrants": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/oauth2PermissionGrants/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/outlook": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/outlook/masterCategories": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/outlook/masterCategories/{outlookCategory-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/ownedDevices": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/ownedDevices/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/ownedObjects": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/ownedObjects/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/photo": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/photo/$value": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/photos": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/photos/{profilePhoto-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/photos/{profilePhoto-id}/$value": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/registeredDevices": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/registeredDevices/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/settings": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/settings/shiftPreferences": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/transitiveMemberOf": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
},
"/users/{user-id}/transitiveMemberOf/$ref": {
- "originalLocation": "/openApiDocs/v1.0/Users.yml",
- "apiVersion": "v1.0"
+ "apiVersion": "v1.0",
+ "originalLocation": "/openApiDocs/v1.0/Users.yml"
}
}
}
diff --git a/profiles/Users/definitions/v1.0-beta.md b/profiles/Users/definitions/v1.0-beta.md
index 8cfac46848f..dd4ffccb13c 100644
--- a/profiles/Users/definitions/v1.0-beta.md
+++ b/profiles/Users/definitions/v1.0-beta.md
@@ -23,6 +23,8 @@ profiles:
/users/{user-id}/memberOf/$ref: v1.0-beta
/users/{user-id}/notifications: v1.0-beta
/users/{user-id}/notifications/{notification-id}: v1.0-beta
+ /users/{user-id}/oauth2PermissionGrants: v1.0-beta
+ /users/{user-id}/oauth2PermissionGrants/$ref: v1.0-beta
/users/{user-id}/outlook: v1.0-beta
/users/{user-id}/outlook/masterCategories: v1.0-beta
/users/{user-id}/outlook/masterCategories/{outlookCategory-id}: v1.0-beta
@@ -85,6 +87,7 @@ profiles:
/users/{user-id}/registeredDevices: v1.0-beta
/users/{user-id}/registeredDevices/$ref: v1.0-beta
/users/{user-id}/settings: v1.0-beta
+ /users/{user-id}/settings/itemInsights: v1.0-beta
/users/{user-id}/settings/regionalAndLanguageSettings: v1.0-beta
/users/{user-id}/settings/shiftPreferences: v1.0-beta
/users/{user-id}/todo: v1.0-beta
diff --git a/profiles/Users/readme.md b/profiles/Users/readme.md
index 022b0bb0047..f0d323a6e57 100644
--- a/profiles/Users/readme.md
+++ b/profiles/Users/readme.md
@@ -6,8 +6,8 @@
``` yaml
require:
-- $(this-folder)/definitions/v1.0.md
- $(this-folder)/definitions/v1.0-beta.md
+- $(this-folder)/definitions/v1.0.md
```
diff --git a/src/Applications/Applications/readme.md b/src/Applications/Applications/readme.md
index dbd32cbe8db..7a77bca828b 100644
--- a/src/Applications/Applications/readme.md
+++ b/src/Applications/Applications/readme.md
@@ -90,6 +90,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Authentication/Authentication.Core/Authenticator.cs b/src/Authentication/Authentication.Core/Authenticator.cs
new file mode 100644
index 00000000000..fe23f3a1a1c
--- /dev/null
+++ b/src/Authentication/Authentication.Core/Authenticator.cs
@@ -0,0 +1,112 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+namespace Microsoft.Graph.Authentication.Core
+{
+ using Microsoft.Graph.Auth;
+ using Microsoft.Graph.PowerShell.Authentication;
+ using Microsoft.Graph.PowerShell.Authentication.Core;
+ using Microsoft.Graph.PowerShell.Authentication.Helpers;
+ using Microsoft.Identity.Client;
+ using System;
+ using System.Collections.Generic;
+ using System.Globalization;
+ using System.Linq;
+ using System.Net.Http;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Authenticator class for handling sign-ins and sign-outs.
+ ///
+ public static class Authenticator
+ {
+ ///
+ /// Authenticates the client using the provided .
+ ///
+ /// The to authenticate.
+ /// Whether or not to force refresh a token if one exists.
+ /// The cancellation token.
+ ///
+ public static async Task AuthenticateAsync(IAuthContext authContext, bool forceRefresh, CancellationToken cancellationToken)
+ {
+ try
+ {
+ // Gets a static instance of IAuthenticationProvider when the client app hasn't changed.
+ IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(authContext);
+ IClientApplicationBase clientApplication = null;
+ if (authContext.AuthType == AuthenticationType.Delegated)
+ {
+ clientApplication = (authProvider as DeviceCodeProvider).ClientApplication;
+ }
+ if (authContext.AuthType == AuthenticationType.AppOnly)
+ {
+ clientApplication = (authProvider as ClientCredentialProvider).ClientApplication;
+ }
+
+ // Incremental scope consent without re-instantiating the auth provider. We will use a static instance.
+ GraphRequestContext graphRequestContext = new GraphRequestContext();
+ graphRequestContext.CancellationToken = cancellationToken;
+ graphRequestContext.MiddlewareOptions = new Dictionary
+ {
+ {
+ typeof(AuthenticationHandlerOption).ToString(),
+ new AuthenticationHandlerOption
+ {
+ AuthenticationProviderOption = new AuthenticationProviderOption
+ {
+ Scopes = authContext.Scopes,
+ ForceRefresh = forceRefresh
+ }
+ }
+ }
+ };
+
+ // Trigger consent.
+ HttpRequestMessage httpRequestMessage = new HttpRequestMessage(HttpMethod.Get, "https://graph.microsoft.com/v1.0/me");
+ httpRequestMessage.Properties.Add(typeof(GraphRequestContext).ToString(), graphRequestContext);
+ await authProvider.AuthenticateRequestAsync(httpRequestMessage);
+
+ IAccount account = null;
+ if (clientApplication != null)
+ {
+ // Only get accounts when we are using MSAL to get an access token.
+ IEnumerable accounts = clientApplication.GetAccountsAsync().GetAwaiter().GetResult();
+ account = accounts.FirstOrDefault();
+ }
+
+ JwtHelpers.DecodeJWT(httpRequestMessage.Headers.Authorization?.Parameter, account, ref authContext);
+ return authContext;
+ }
+ catch (AuthenticationException authEx)
+ {
+ if ((authEx.InnerException is TaskCanceledException) && cancellationToken.IsCancellationRequested)
+ {
+ // DeviceCodeTimeout
+ throw new Exception(string.Format(
+ CultureInfo.CurrentCulture,
+ ErrorConstants.Message.DeviceCodeTimeout,
+ Constants.MaxDeviceCodeTimeOut));
+ }
+ else
+ {
+ throw authEx.InnerException ?? authEx;
+ }
+ }
+ catch (Exception ex)
+ {
+ throw ex.InnerException ?? ex;
+ }
+ }
+
+ ///
+ /// Signs out of the provided .
+ ///
+ /// The to sign-out from.
+ public static void LogOut(IAuthContext authContext)
+ {
+ AuthenticationHelpers.Logout(authContext);
+ }
+ }
+}
diff --git a/src/Authentication/Authentication/Common/GraphSession.cs b/src/Authentication/Authentication.Core/Common/GraphSession.cs
similarity index 98%
rename from src/Authentication/Authentication/Common/GraphSession.cs
rename to src/Authentication/Authentication.Core/Common/GraphSession.cs
index 275b4a190b0..9de7e41c12d 100644
--- a/src/Authentication/Authentication/Common/GraphSession.cs
+++ b/src/Authentication/Authentication.Core/Common/GraphSession.cs
@@ -4,6 +4,7 @@
namespace Microsoft.Graph.PowerShell.Authentication
{
+ using Microsoft.Graph.PowerShell.Authentication.Core;
using Microsoft.Graph.PowerShell.Authentication.Interfaces;
using System;
using System.Security;
@@ -175,7 +176,7 @@ public static void Modify(Action modifier)
///
/// Resets the current instance of to initial state.
///
- internal static void Reset()
+ public static void Reset()
{
try
{
diff --git a/src/Authentication/Authentication.Core/Constants.cs b/src/Authentication/Authentication.Core/Constants.cs
new file mode 100644
index 00000000000..2b7675a6089
--- /dev/null
+++ b/src/Authentication/Authentication.Core/Constants.cs
@@ -0,0 +1,18 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+namespace Microsoft.Graph.PowerShell.Authentication.Core
+{
+ using System.IO;
+ public static class Constants
+ {
+ public const int MaxDeviceCodeTimeOut = 120; // 2 mins timeout.
+ public static readonly string GraphDirectoryPath = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.UserProfile), ".graph");
+ internal const string TokenCacheServiceName = "com.microsoft.graph.powershell.sdkcache";
+ internal const string DefaultProfile = "v1.0";
+ internal const int TokenExpirationBufferInMinutes = 5;
+ internal const string DefaulAdTenant = "common";
+ internal const string DefaultAzureADEndpoint = "https://login.microsoftonline.com";
+ }
+}
diff --git a/src/Authentication/Authentication.Core/ErrorConstants.cs b/src/Authentication/Authentication.Core/ErrorConstants.cs
new file mode 100644
index 00000000000..3ee456579e6
--- /dev/null
+++ b/src/Authentication/Authentication.Core/ErrorConstants.cs
@@ -0,0 +1,31 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+using System;
+
+namespace Microsoft.Graph.PowerShell.Authentication.Core
+{
+ public static class ErrorConstants
+ {
+ internal static class Codes
+ {
+ internal const string SessionNotInitialized = "sessionNotInitialized";
+ internal const string SessionLockReadRecursion = "sessionLockReadRecursion";
+ internal const string SessionLockReadDisposed = "sessionLockReadDisposed";
+ internal const string SessionLockWriteDisposed = "sessionLockWriteDisposed";
+ internal const string SessionLockWriteRecursion = "sessionLockWriteRecursion";
+ internal const string InvalidJWT = "invalidJWT";
+ }
+
+ public static class Message
+ {
+ public const string MissingAuthContext = "Authentication needed, call Connect-MgGraph.";
+ internal const string InvalidJWT = "Invalid JWT access token.";
+ internal const string NullOrEmptyParameter = "Parameter '{0}' cannot be null or empty.";
+ internal const string MacKeyChainFailed = "{0} failed with result code {1}.";
+ internal const string DeviceCodeTimeout = "Device code terminal timed-out after {0} seconds. Please try again.";
+ internal const string InvalidUserProvidedToken = "The provided access token is invalid. Set a valid access token to `-{0}` parameter and try again.";
+ internal const string ExpiredUserProvidedToken = "The provided access token has expired. Set a valid access token to `-{0}` parameter and try again.";
+ }
+ }
+}
diff --git a/src/Authentication/Authentication/Interfaces/IAuthContext.cs b/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs
similarity index 100%
rename from src/Authentication/Authentication/Interfaces/IAuthContext.cs
rename to src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs
diff --git a/src/Authentication/Authentication/Interfaces/IDataStore.cs b/src/Authentication/Authentication.Core/Interfaces/IDataStore.cs
similarity index 100%
rename from src/Authentication/Authentication/Interfaces/IDataStore.cs
rename to src/Authentication/Authentication.Core/Interfaces/IDataStore.cs
diff --git a/src/Authentication/Authentication/Interfaces/IGraphEnvironment.cs b/src/Authentication/Authentication.Core/Interfaces/IGraphEnvironment.cs
similarity index 100%
rename from src/Authentication/Authentication/Interfaces/IGraphEnvironment.cs
rename to src/Authentication/Authentication.Core/Interfaces/IGraphEnvironment.cs
diff --git a/src/Authentication/Authentication/Interfaces/IGraphSession.cs b/src/Authentication/Authentication.Core/Interfaces/IGraphSession.cs
similarity index 100%
rename from src/Authentication/Authentication/Interfaces/IGraphSession.cs
rename to src/Authentication/Authentication.Core/Interfaces/IGraphSession.cs
diff --git a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
new file mode 100644
index 00000000000..9832da8843a
--- /dev/null
+++ b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
@@ -0,0 +1,26 @@
+
+
+
+ netstandard2.0;netcoreapp2.1;net461
+ Microsoft.Graph.PowerShell.Authentication.Core
+ 1.4.2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Authentication/Authentication/Models/JwtPayload.cs b/src/Authentication/Authentication.Core/Models/JwtPayload.cs
similarity index 100%
rename from src/Authentication/Authentication/Models/JwtPayload.cs
rename to src/Authentication/Authentication.Core/Models/JwtPayload.cs
diff --git a/src/Authentication/Authentication.Core/Properties/AssemblyInfo.cs b/src/Authentication/Authentication.Core/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000000..47dc954fb32
--- /dev/null
+++ b/src/Authentication/Authentication.Core/Properties/AssemblyInfo.cs
@@ -0,0 +1,5 @@
+using System.Runtime.CompilerServices;
+
+#if DEBUG
+[assembly: InternalsVisibleTo("Microsoft.Graph.Authentication.Test")]
+#endif
diff --git a/src/Authentication/Authentication/TokenCache/LinuxTokenCache.cs b/src/Authentication/Authentication.Core/TokenCache/LinuxTokenCache.cs
similarity index 98%
rename from src/Authentication/Authentication/TokenCache/LinuxTokenCache.cs
rename to src/Authentication/Authentication.Core/TokenCache/LinuxTokenCache.cs
index f195708c02b..1c73c082c29 100644
--- a/src/Authentication/Authentication/TokenCache/LinuxTokenCache.cs
+++ b/src/Authentication/Authentication.Core/TokenCache/LinuxTokenCache.cs
@@ -4,6 +4,7 @@
namespace Microsoft.Graph.PowerShell.Authentication.TokenCache
{
+ using Microsoft.Graph.PowerShell.Authentication.Core;
using Microsoft.Graph.PowerShell.Authentication.TokenCache.NativePlatformLibs;
using System;
using System.Globalization;
diff --git a/src/Authentication/Authentication/TokenCache/MacTokenCache.cs b/src/Authentication/Authentication.Core/TokenCache/MacTokenCache.cs
similarity index 99%
rename from src/Authentication/Authentication/TokenCache/MacTokenCache.cs
rename to src/Authentication/Authentication.Core/TokenCache/MacTokenCache.cs
index 3ac7a642300..b06a641dac4 100644
--- a/src/Authentication/Authentication/TokenCache/MacTokenCache.cs
+++ b/src/Authentication/Authentication.Core/TokenCache/MacTokenCache.cs
@@ -4,6 +4,7 @@
namespace Microsoft.Graph.PowerShell.Authentication.TokenCache
{
+ using Microsoft.Graph.PowerShell.Authentication.Core;
using Microsoft.Graph.PowerShell.Authentication.TokenCache.NativePlatformLibs;
using System;
using System.Globalization;
diff --git a/src/Authentication/Authentication/TokenCache/NativePlatformLibs/LinuxNativeKeyUtils.cs b/src/Authentication/Authentication.Core/TokenCache/NativePlatformLibs/LinuxNativeKeyUtils.cs
similarity index 100%
rename from src/Authentication/Authentication/TokenCache/NativePlatformLibs/LinuxNativeKeyUtils.cs
rename to src/Authentication/Authentication.Core/TokenCache/NativePlatformLibs/LinuxNativeKeyUtils.cs
diff --git a/src/Authentication/Authentication/TokenCache/NativePlatformLibs/MacNativeKeyChain.cs b/src/Authentication/Authentication.Core/TokenCache/NativePlatformLibs/MacNativeKeyChain.cs
similarity index 100%
rename from src/Authentication/Authentication/TokenCache/NativePlatformLibs/MacNativeKeyChain.cs
rename to src/Authentication/Authentication.Core/TokenCache/NativePlatformLibs/MacNativeKeyChain.cs
diff --git a/src/Authentication/Authentication/TokenCache/TokenCacheStorage.cs b/src/Authentication/Authentication.Core/TokenCache/TokenCacheStorage.cs
similarity index 98%
rename from src/Authentication/Authentication/TokenCache/TokenCacheStorage.cs
rename to src/Authentication/Authentication.Core/TokenCache/TokenCacheStorage.cs
index b1796dc5e73..dce951e1800 100644
--- a/src/Authentication/Authentication/TokenCache/TokenCacheStorage.cs
+++ b/src/Authentication/Authentication.Core/TokenCache/TokenCacheStorage.cs
@@ -1,6 +1,7 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
+using Microsoft.Graph.PowerShell.Authentication.Core;
using System;
using System.Globalization;
using System.Security;
diff --git a/src/Authentication/Authentication/TokenCache/WindowsTokenCache.cs b/src/Authentication/Authentication.Core/TokenCache/WindowsTokenCache.cs
similarity index 98%
rename from src/Authentication/Authentication/TokenCache/WindowsTokenCache.cs
rename to src/Authentication/Authentication.Core/TokenCache/WindowsTokenCache.cs
index fa2612ab814..335c87bb632 100644
--- a/src/Authentication/Authentication/TokenCache/WindowsTokenCache.cs
+++ b/src/Authentication/Authentication.Core/TokenCache/WindowsTokenCache.cs
@@ -4,6 +4,7 @@
namespace Microsoft.Graph.PowerShell.Authentication.TokenCache
{
+ using Microsoft.Graph.PowerShell.Authentication.Core;
using System;
using System.Globalization;
using System.IO;
diff --git a/src/Authentication/Authentication/Helpers/AuthenticationHelpers.cs b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
similarity index 82%
rename from src/Authentication/Authentication/Helpers/AuthenticationHelpers.cs
rename to src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
index 93631d0a257..1a5d80ca604 100644
--- a/src/Authentication/Authentication/Helpers/AuthenticationHelpers.cs
+++ b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
@@ -4,7 +4,7 @@
namespace Microsoft.Graph.PowerShell.Authentication.Helpers
{
using Microsoft.Graph.Auth;
- using Microsoft.Graph.PowerShell.Authentication.Models;
+ using Microsoft.Graph.PowerShell.Authentication.Core;
using Microsoft.Graph.PowerShell.Authentication.TokenCache;
using Microsoft.Identity.Client;
@@ -18,11 +18,43 @@ namespace Microsoft.Graph.PowerShell.Authentication.Helpers
using AuthenticationException = System.Security.Authentication.AuthenticationException;
- internal static class AuthenticationHelpers
+ ///
+ /// Helper class for authentication.
+ ///
+ public static class AuthenticationHelpers
{
static ReaderWriterLockSlim _cacheLock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion);
- internal static IAuthenticationProvider GetAuthProvider(IAuthContext authContext)
+ ///
+ /// Signs out of the current session using the provided .
+ ///
+ /// The to sign-out from.
+ internal static void Logout(IAuthContext authContext)
+ {
+ try
+ {
+ _cacheLock.EnterWriteLock();
+ if (authContext.AuthType == AuthenticationType.UserProvidedAccessToken)
+ {
+ GraphSession.Instance.UserProvidedToken = null;
+ }
+ else
+ {
+ TokenCacheStorage.DeleteToken(authContext);
+ }
+ }
+ finally
+ {
+ _cacheLock.ExitWriteLock();
+ }
+ }
+
+ ///
+ /// Gets an using the provide .
+ ///
+ /// The to get an auth provider for.
+ /// A based on provided .
+ public static IAuthenticationProvider GetAuthProvider(IAuthContext authContext)
{
if (authContext is null)
{
@@ -39,6 +71,7 @@ internal static IAuthenticationProvider GetAuthProvider(IAuthContext authContext
.Create(authContext.ClientId)
.WithTenantId(authContext.TenantId)
.WithAuthority(authorityUrl)
+ .WithClientCapabilities(new[] { "cp1" })
.Build();
ConfigureTokenCache(publicClientApp.UserTokenCache, authContext);
@@ -75,70 +108,12 @@ internal static IAuthenticationProvider GetAuthProvider(IAuthContext authContext
}
return authProvider;
}
+
///
- /// Gets a certificate based on the current context.
- /// Priority is Name, ThumbPrint, then In-Memory Cert
+ /// Configures a token cache using the provide .
///
- /// Current context
- /// A based on provided context
- private static X509Certificate2 GetCertificate(IAuthContext context)
- {
- X509Certificate2 certificate;
- if (!string.IsNullOrWhiteSpace(context.CertificateName))
- {
- certificate = GetCertificateByName(context.CertificateName);
- }
- else if (!string.IsNullOrWhiteSpace(context.CertificateThumbprint))
- {
- certificate = GetCertificateByThumbprint(context.CertificateThumbprint);
- }
- else
- {
- certificate = context.Certificate;
- }
-
- if (certificate == null)
- {
- throw new ArgumentNullException(nameof(certificate), $"Certificate with the Specified ThumbPrint {context.CertificateThumbprint}, Name {context.CertificateName} or In-Memory could not be found");
- }
-
- return certificate;
- }
-
- private static string GetAuthorityUrl(IAuthContext authContext)
- {
- string audience = authContext.TenantId ?? GraphEnvironmentConstants.CommonAdTenant;
- string defaultInstance = GraphEnvironment.BuiltInEnvironments[GraphEnvironmentConstants.EnvironmentName.Global].AzureADEndpoint;
- string authorityUrl = $"{defaultInstance}/{audience}";
-
- if (GraphSession.Instance.Environment != null)
- {
- authorityUrl = $"{GraphSession.Instance.Environment.AzureADEndpoint}/{audience}";
- }
-
- return authorityUrl;
- }
-
- internal static void Logout(IAuthContext authConfig)
- {
- try
- {
- _cacheLock.EnterWriteLock();
- if (authConfig.AuthType == AuthenticationType.UserProvidedAccessToken)
- {
- GraphSession.Instance.UserProvidedToken = null;
- }
- else
- {
- TokenCacheStorage.DeleteToken(authConfig);
- }
- }
- finally
- {
- _cacheLock.ExitWriteLock();
- }
- }
-
+ /// MSAL's token cache to configure.
+ /// The to get configure an token cache for.
private static void ConfigureTokenCache(ITokenCache tokenCache, IAuthContext authContext)
{
tokenCache.SetBeforeAccess((TokenCacheNotificationArgs args) =>
@@ -171,6 +146,55 @@ private static void ConfigureTokenCache(ITokenCache tokenCache, IAuthContext aut
});
}
+ ///
+ /// Gets an authority URL from the provided .
+ ///
+ /// The to get an authority URL for.
+ ///
+ private static string GetAuthorityUrl(IAuthContext authContext)
+ {
+ string audience = authContext.TenantId ?? Constants.DefaulAdTenant;
+ string defaultInstance = Constants.DefaultAzureADEndpoint;
+ string authorityUrl = $"{defaultInstance}/{audience}";
+
+ if (GraphSession.Instance.Environment != null)
+ {
+ authorityUrl = $"{GraphSession.Instance.Environment.AzureADEndpoint}/{audience}";
+ }
+
+ return authorityUrl;
+ }
+
+ ///
+ /// Gets a certificate based on the current context.
+ /// Priority is Name, ThumbPrint, then In-Memory Cert
+ ///
+ /// Current context
+ /// A based on provided context
+ private static X509Certificate2 GetCertificate(IAuthContext context)
+ {
+ X509Certificate2 certificate;
+ if (!string.IsNullOrWhiteSpace(context.CertificateName))
+ {
+ certificate = GetCertificateByName(context.CertificateName);
+ }
+ else if (!string.IsNullOrWhiteSpace(context.CertificateThumbprint))
+ {
+ certificate = GetCertificateByThumbprint(context.CertificateThumbprint);
+ }
+ else
+ {
+ certificate = context.Certificate;
+ }
+
+ if (certificate == null)
+ {
+ throw new ArgumentNullException(nameof(certificate), $"Certificate with the Specified ThumbPrint {context.CertificateThumbprint}, Name {context.CertificateName} or In-Memory could not be found");
+ }
+
+ return certificate;
+ }
+
///
/// Gets unexpired certificate of the specified certificate thumbprint for the current user in My store.
///
diff --git a/src/Authentication/Authentication/Helpers/JwtHelpers.cs b/src/Authentication/Authentication.Core/Utilities/JwtHelpers.cs
similarity index 57%
rename from src/Authentication/Authentication/Helpers/JwtHelpers.cs
rename to src/Authentication/Authentication.Core/Utilities/JwtHelpers.cs
index a8e45b9165c..c877d2785c5 100644
--- a/src/Authentication/Authentication/Helpers/JwtHelpers.cs
+++ b/src/Authentication/Authentication.Core/Utilities/JwtHelpers.cs
@@ -5,20 +5,53 @@
namespace Microsoft.Graph.PowerShell.Authentication.Helpers
{
using Microsoft.Graph.Auth;
- using Microsoft.IdentityModel.Tokens;
+ using Microsoft.Graph.PowerShell.Authentication.Core;
+ using Microsoft.Identity.Client;
using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
using System;
- using System.Collections.Generic;
+ using System.Globalization;
using System.IdentityModel.Tokens.Jwt;
- using System.Security.Claims;
- using System.Text;
///
/// A JwtHelpers class.
///
internal static class JwtHelpers
{
+ ///
+ /// Decodes a JWT token and store claims in the provided by ref.
+ ///
+ /// A JWT string.
+ /// MSAL's .
+ /// An to store JWT claims in.
+ internal static void DecodeJWT(string jwToken, IAccount account, ref IAuthContext authContext)
+ {
+ var jwtPayload = JwtHelpers.DecodeToObject(jwToken);
+ if (authContext.AuthType == AuthenticationType.UserProvidedAccessToken)
+ {
+ if (jwtPayload == null)
+ {
+ throw new Exception(string.Format(
+ CultureInfo.CurrentCulture,
+ ErrorConstants.Message.InvalidUserProvidedToken,
+ "AccessToken"));
+ }
+
+ if (jwtPayload.Exp <= JwtHelpers.ConvertToUnixTimestamp(DateTime.UtcNow + TimeSpan.FromMinutes(Constants.TokenExpirationBufferInMinutes)))
+ {
+ throw new Exception(string.Format(
+ CultureInfo.CurrentCulture,
+ ErrorConstants.Message.ExpiredUserProvidedToken,
+ "AccessToken"));
+ }
+ }
+
+ authContext.ClientId = jwtPayload?.Appid ?? authContext.ClientId;
+ authContext.Scopes = jwtPayload?.Scp?.Split(' ') ?? jwtPayload?.Roles;
+ authContext.TenantId = jwtPayload?.Tid ?? account?.HomeAccountId?.TenantId;
+ authContext.AppName = jwtPayload?.AppDisplayname;
+ authContext.Account = jwtPayload?.Upn ?? account?.Username;
+ }
+
///
/// Decodes a JWT token by extracting claims from the payload.
///
diff --git a/src/Authentication/Authentication/Helpers/PlatformHelpers.cs b/src/Authentication/Authentication.Core/Utilities/PlatformHelpers.cs
similarity index 96%
rename from src/Authentication/Authentication/Helpers/PlatformHelpers.cs
rename to src/Authentication/Authentication.Core/Utilities/PlatformHelpers.cs
index cbb9e60ba16..0c4c98234fc 100644
--- a/src/Authentication/Authentication/Helpers/PlatformHelpers.cs
+++ b/src/Authentication/Authentication.Core/Utilities/PlatformHelpers.cs
@@ -6,7 +6,7 @@ namespace Microsoft.Graph.PowerShell.Authentication.Helpers
{
using System.Runtime.InteropServices;
- internal static class OperatingSystem
+ public static class OperatingSystem
{
///
/// Detects if the platform we are running on is Windows.
diff --git a/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs b/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs
index 2bb665e8ee8..cbc0ae6456e 100644
--- a/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs
+++ b/src/Authentication/Authentication.Test/Helpers/GraphSessionTests.cs
@@ -52,7 +52,7 @@ public void ShouldThrowExceptionWhenSessionIsNotInitialized()
{
InvalidOperationException exception = Assert.Throws(() => GraphSession.Instance);
- Assert.Equal(ErrorConstants.Codes.SessionNotInitialized, exception.Message);
+ Assert.Equal(PowerShell.Authentication.Core.ErrorConstants.Codes.SessionNotInitialized, exception.Message);
// reset static instance.
GraphSession.Reset();
diff --git a/src/Authentication/Authentication.sln b/src/Authentication/Authentication.sln
index fd8252ae061..c24efddc101 100644
--- a/src/Authentication/Authentication.sln
+++ b/src/Authentication/Authentication.sln
@@ -5,7 +5,9 @@ VisualStudioVersion = 16.0.29201.188
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Graph.Authentication", "Authentication\Microsoft.Graph.Authentication.csproj", "{44FF315A-27B2-4401-81A9-1912E6511EE6}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Graph.Authentication.Test", "Authentication.Test\Microsoft.Graph.Authentication.Test.csproj", "{416590B4-3A91-4B0D-9B40-3F69438B6D85}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Graph.Authentication.Test", "Authentication.Test\Microsoft.Graph.Authentication.Test.csproj", "{416590B4-3A91-4B0D-9B40-3F69438B6D85}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Graph.Authentication.Core", "Authentication.Core\Microsoft.Graph.Authentication.Core.csproj", "{50050576-74B8-4507-B1FE-C47740BB3B71}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -21,6 +23,10 @@ Global
{416590B4-3A91-4B0D-9B40-3F69438B6D85}.Debug|Any CPU.Build.0 = Debug|Any CPU
{416590B4-3A91-4B0D-9B40-3F69438B6D85}.Release|Any CPU.ActiveCfg = Release|Any CPU
{416590B4-3A91-4B0D-9B40-3F69438B6D85}.Release|Any CPU.Build.0 = Release|Any CPU
+ {50050576-74B8-4507-B1FE-C47740BB3B71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {50050576-74B8-4507-B1FE-C47740BB3B71}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {50050576-74B8-4507-B1FE-C47740BB3B71}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {50050576-74B8-4507-B1FE-C47740BB3B71}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
index 4bd14d38df0..4de46081237 100644
--- a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
+++ b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
@@ -7,17 +7,12 @@ namespace Microsoft.Graph.PowerShell.Authentication.Cmdlets
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
- using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Net;
- using System.Globalization;
using System.Collections;
using System.Security.Cryptography.X509Certificates;
- using Identity.Client;
-
- using Microsoft.Graph.Auth;
using Microsoft.Graph.PowerShell.Authentication.Helpers;
using Microsoft.Graph.PowerShell.Authentication.Models;
@@ -25,6 +20,8 @@ namespace Microsoft.Graph.PowerShell.Authentication.Cmdlets
using Common;
using static Helpers.AsyncHelpers;
+ using Microsoft.Graph.Authentication.Core;
+ using Microsoft.Graph.PowerShell.Authentication.Utilities;
[Cmdlet(VerbsCommunications.Connect, "MgGraph", DefaultParameterSetName = Constants.UserParameterSet)]
[Alias("Connect-Graph")]
@@ -168,7 +165,7 @@ private async Task ProcessRecordAsync()
case Constants.UserParameterSet:
{
// 2 mins timeout. 1 min < HTTP timeout.
- TimeSpan authTimeout = new TimeSpan(0, 0, Constants.MaxDeviceCodeTimeOut);
+ TimeSpan authTimeout = new TimeSpan(0, 0, Core.Constants.MaxDeviceCodeTimeOut);
// To avoid re-initializing the tokenSource, use CancelAfter
_cancellationTokenSource.CancelAfter(authTimeout);
authContext.AuthType = AuthenticationType.Delegated;
@@ -201,71 +198,12 @@ private async Task ProcessRecordAsync()
try
{
- // Gets a static instance of IAuthenticationProvider when the client app hasn't changed.
- IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(authContext);
- IClientApplicationBase clientApplication = null;
- if (ParameterSetName == Constants.UserParameterSet)
- {
- clientApplication = (authProvider as DeviceCodeProvider).ClientApplication;
- }
- else if (ParameterSetName == Constants.AppParameterSet)
- {
- clientApplication = (authProvider as ClientCredentialProvider).ClientApplication;
- }
-
- // Incremental scope consent without re-instantiating the auth provider. We will use a static instance.
- GraphRequestContext graphRequestContext = new GraphRequestContext();
- graphRequestContext.CancellationToken = _cancellationTokenSource.Token;
- graphRequestContext.MiddlewareOptions = new Dictionary
- {
- {
- typeof(AuthenticationHandlerOption).ToString(),
- new AuthenticationHandlerOption
- {
- AuthenticationProviderOption = new AuthenticationProviderOption
- {
- Scopes = authContext.Scopes,
- ForceRefresh = ForceRefresh
- }
- }
- }
- };
-
- // Trigger consent.
- HttpRequestMessage httpRequestMessage = new HttpRequestMessage(HttpMethod.Get, "https://graph.microsoft.com/v1.0/me");
- httpRequestMessage.Properties.Add(typeof(GraphRequestContext).ToString(), graphRequestContext);
- await authProvider.AuthenticateRequestAsync(httpRequestMessage);
-
- IAccount account = null;
- if (clientApplication != null)
- {
- // Only get accounts when we are using MSAL to get an access token.
- IEnumerable accounts = clientApplication.GetAccountsAsync().GetAwaiter().GetResult();
- account = accounts.FirstOrDefault();
- }
- DecodeJWT(httpRequestMessage.Headers.Authorization?.Parameter, account, ref authContext);
-
// Save auth context to session state.
- GraphSession.Instance.AuthContext = authContext;
- }
- catch (AuthenticationException authEx)
- {
- if ((authEx.InnerException is TaskCanceledException) && _cancellationTokenSource.Token.IsCancellationRequested)
- {
- // DeviceCodeTimeout
- throw new Exception(string.Format(
- CultureInfo.CurrentCulture,
- ErrorConstants.Message.DeviceCodeTimeout,
- Constants.MaxDeviceCodeTimeOut));
- }
- else
- {
- throw authEx.InnerException ?? authEx;
- }
+ GraphSession.Instance.AuthContext = await Authenticator.AuthenticateAsync(authContext, ForceRefresh, _cancellationTokenSource.Token);
}
- catch (Exception ex)
+ catch(Exception ex)
{
- throw ex.InnerException ?? ex;
+ throw ex;
}
WriteObject("Welcome To Microsoft Graph!");
@@ -348,35 +286,6 @@ private void ValidateParameters()
}
}
- private void DecodeJWT(string token, IAccount account, ref IAuthContext authContext)
- {
- JwtPayload jwtPayload = JwtHelpers.DecodeToObject(token);
- if (authContext.AuthType == AuthenticationType.UserProvidedAccessToken)
- {
- if (jwtPayload == null)
- {
- throw new Exception(string.Format(
- CultureInfo.CurrentCulture,
- ErrorConstants.Message.InvalidUserProvidedToken,
- nameof(AccessToken)));
- }
-
- if (jwtPayload.Exp <= JwtHelpers.ConvertToUnixTimestamp(DateTime.UtcNow + TimeSpan.FromMinutes(Constants.TokenExpirationBufferInMinutes)))
- {
- throw new Exception(string.Format(
- CultureInfo.CurrentCulture,
- ErrorConstants.Message.ExpiredUserProvidedToken,
- nameof(AccessToken)));
- }
- }
-
- authContext.ClientId = jwtPayload?.Appid ?? authContext.ClientId;
- authContext.Scopes = jwtPayload?.Scp?.Split(' ') ?? jwtPayload?.Roles;
- authContext.TenantId = jwtPayload?.Tid ?? account?.HomeAccountId?.TenantId;
- authContext.AppName = jwtPayload?.AppDisplayname;
- authContext.Account = jwtPayload?.Upn ?? account?.Username;
- }
-
///
/// Globally initializes GraphSession.
///
@@ -393,6 +302,7 @@ public void OnImport()
public void OnRemove(PSModuleInfo psModuleInfo)
{
GraphSession.Reset();
+ DependencyAssemblyResolver.Reset();
}
}
}
diff --git a/src/Authentication/Authentication/Cmdlets/DisconnectMgGraph.cs b/src/Authentication/Authentication/Cmdlets/DisconnectMgGraph.cs
index 8e38062da9b..a059cc595aa 100644
--- a/src/Authentication/Authentication/Cmdlets/DisconnectMgGraph.cs
+++ b/src/Authentication/Authentication/Cmdlets/DisconnectMgGraph.cs
@@ -3,6 +3,7 @@
// ------------------------------------------------------------------------------
namespace Microsoft.Graph.PowerShell.Authentication.Cmdlets
{
+ using Microsoft.Graph.Authentication.Core;
using Microsoft.Graph.PowerShell.Authentication.Helpers;
using System;
using System.Management.Automation;
@@ -24,13 +25,13 @@ protected override void ProcessRecord()
{
base.ProcessRecord();
- IAuthContext authConfig = GraphSession.Instance.AuthContext;
+ IAuthContext authContext = GraphSession.Instance.AuthContext;
- if (authConfig == null)
+ if (authContext == null)
ThrowTerminatingError(
- new ErrorRecord(new System.Exception("No application to sign out from."), Guid.NewGuid().ToString(), ErrorCategory.InvalidArgument, null));
+ new ErrorRecord(new Exception("No application to sign out from."), Guid.NewGuid().ToString(), ErrorCategory.InvalidArgument, null));
- AuthenticationHelpers.Logout(authConfig);
+ Authenticator.LogOut(authContext);
GraphSession.Instance.AuthContext = null;
}
diff --git a/src/Authentication/Authentication/Constants.cs b/src/Authentication/Authentication/Constants.cs
index 8a4cac07642..62ba55bc18b 100644
--- a/src/Authentication/Authentication/Constants.cs
+++ b/src/Authentication/Authentication/Constants.cs
@@ -7,17 +7,11 @@ namespace Microsoft.Graph.PowerShell.Authentication
using System.IO;
public static class Constants
{
- public const string GraphAuthConfigId = "GraphAuthConfigId";
public const string SDKHeaderValue = "Graph-powershell-{0}-{1}.{2}.{3}";
internal const string UserParameterSet = "UserParameterSet";
internal const string AppParameterSet = "AppParameterSet";
internal const string AccessTokenParameterSet = "AccessTokenParameterSet";
- internal const int MaxDeviceCodeTimeOut = 120; // 2 mins timeout.
- internal static readonly string GraphDirectoryPath = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.UserProfile), ".graph");
- internal static readonly string SettingFilePath = Path.Combine(GraphDirectoryPath, "GraphContext.json");
+ internal static readonly string SettingFilePath = Path.Combine(Core.Constants.GraphDirectoryPath, "GraphContext.json");
internal const string ProfileDescription = "A snapshot of the Microsoft Graph {0} API for {1} cloud.";
- internal const string TokenCacheServiceName = "com.microsoft.graph.powershell.sdkcache";
- internal const string DefaultProfile = "v1.0";
- internal const int TokenExpirationBufferInMinutes = 5;
}
}
diff --git a/src/Authentication/Authentication/ErrorConstants.cs b/src/Authentication/Authentication/ErrorConstants.cs
index f9f6cf2fa7d..4f76a504412 100644
--- a/src/Authentication/Authentication/ErrorConstants.cs
+++ b/src/Authentication/Authentication/ErrorConstants.cs
@@ -9,12 +9,6 @@ public static class ErrorConstants
{
internal static class Codes
{
- internal const string SessionNotInitialized = "sessionNotInitialized";
- internal const string SessionLockReadRecursion = "sessionLockReadRecursion";
- internal const string SessionLockReadDisposed = "sessionLockReadDisposed";
- internal const string SessionLockWriteDisposed = "sessionLockWriteDisposed";
- internal const string SessionLockWriteRecursion = "sessionLockWriteRecursion";
- internal const string InvalidJWT = "invalidJWT";
internal const string InvokeGraphHttpResponseException = nameof(InvokeGraphHttpResponseException);
internal const string InvokeGraphContentTypeException = nameof(InvokeGraphContentTypeException);
internal const string InvokeGraphRequestInvalidHost = nameof(InvokeGraphRequestInvalidHost);
@@ -37,18 +31,10 @@ internal static class Codes
internal static class Message
{
- internal const string InvalidJWT = "Invalid JWT access token.";
- internal const string MissingAuthContext = "Authentication needed, call Connect-MgGraph.";
- internal const string NullOrEmptyParameter = "Parameter '{0}' cannot be null or empty.";
- internal const string MacKeyChainFailed = "{0} failed with result code {1}.";
- internal const string DeviceCodeTimeout = "Device code terminal timed-out after {0} seconds. Please try again.";
- internal const string InvalidUserProvidedToken = "The provided access token is invalid. Set a valid access token to `-{0}` parameter and try again.";
- internal const string ExpiredUserProvidedToken = "The provided access token has expired. Set a valid access token to `-{0}` parameter and try again.";
+ internal const string CannotModifyBuiltInEnvironment = "Cannot {0} built-in environment {1}.";
internal const string InvalidUrlParameter = "Parameter '{0}' has an invalid endpoint URL. Please use a valid URL with a network protocol i.e. [protocol]://[resource-name].";
- internal const string InvalidNationalCloud = "Parameter `{0}` has an invalid national cloud. Use Get-MgEnvironment to get a list of valid national clouds.";
internal const string InvalidEnvironment = "Unable to find environment with name '{0}'. Use Get-MgEnvironment to list available environments.";
internal const string CannotAccessFile = "Could not {0} file at '{1}'. Please ensure you have access to this file and try again in a few minutes..";
- internal const string CannotModifyBuiltInEnvironment = "Cannot {0} built-in environment {1}.";
internal const string InvalidCertificateThumbprint = "'{0}' must have a length of 40. Ensure you have the right certificate thumbprint then try again.";
}
}
diff --git a/src/Authentication/Authentication/Helpers/HttpHelpers.cs b/src/Authentication/Authentication/Helpers/HttpHelpers.cs
index 7732252c06f..1eab2b43dd6 100644
--- a/src/Authentication/Authentication/Helpers/HttpHelpers.cs
+++ b/src/Authentication/Authentication/Helpers/HttpHelpers.cs
@@ -37,7 +37,7 @@ public static HttpClient GetGraphHttpClient(IAuthContext authContext = null)
authContext = authContext ?? GraphSession.Instance.AuthContext;
if (authContext is null)
{
- throw new AuthenticationException(ErrorConstants.Message.MissingAuthContext);
+ throw new AuthenticationException(Core.ErrorConstants.Message.MissingAuthContext);
}
IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(authContext);
diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj b/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj
index a100cca9335..17acca82e6a 100644
--- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj
+++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj
@@ -1,38 +1,23 @@
- 1.4.0
+ 1.4.2
7.1
netstandard2.0
Library
Microsoft.Graph.Authentication
Microsoft.Graph.PowerShell.Authentication
- true
- false
- ./bin
- $(OutputPath)
true
true
Microsoft.Graph.Authentication.nuspec
© Microsoft Corporation. All rights reserved.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
@@ -47,7 +32,4 @@
Resources.Designer.cs
-
-
-
\ No newline at end of file
diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec b/src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec
index 3d8d9b10de7..01fe73c6929 100644
--- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec
+++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec
@@ -1,7 +1,7 @@
- 1.3.1
+ 1.4.2
Microsoft.Graph.Authentication
Microsoft Graph PowerShell authentication module
Microsoft
@@ -16,20 +16,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1
index be0fad82789..f237e5782e9 100644
--- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1
+++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft
#
-# Generated on: 1/29/2021
+# Generated on: 3/12/2021
#
@{
@@ -12,7 +12,7 @@
RootModule = './Microsoft.Graph.Authentication.psm1'
# Version number of this module.
-ModuleVersion = '1.4.2'
+ModuleVersion = '1.5.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1 b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1
index ea6bf11ddb6..2dd0e3787f2 100644
--- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1
+++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psm1
@@ -1,13 +1,10 @@
-# Load dependencies
-$preloadPath = (Join-Path $PSScriptRoot -ChildPath ".\bin\PreloadAssemblies")
-if ($PSEdition -eq 'Desktop' -and (Test-Path $preloadPath -ErrorAction Ignore)) {
- try {
- Get-ChildItem -ErrorAction Stop -Path $preloadPath -Filter "*.dll" | ForEach-Object {
- Add-Type -Path $_.FullName -ErrorAction Ignore | Out-Null
- }
- }
- catch { }
-}
# Load the module dll
-$null = Import-Module -Name (Join-Path $PSScriptRoot '.\bin\Microsoft.Graph.Authentication.dll')
\ No newline at end of file
+$null = Import-Module -Name (Join-Path $PSScriptRoot 'Microsoft.Graph.Authentication.dll')
+
+if (Test-Path -Path "$PSScriptRoot\StartupScripts" -ErrorAction Ignore)
+{
+ Get-ChildItem "$PSScriptRoot\StartupScripts" -ErrorAction Stop | ForEach-Object {
+ . $_.FullName
+ }
+}
\ No newline at end of file
diff --git a/src/Authentication/Authentication/StartupScripts/InitializeAssemblyResolver.ps1 b/src/Authentication/Authentication/StartupScripts/InitializeAssemblyResolver.ps1
new file mode 100644
index 00000000000..4926d2271d4
--- /dev/null
+++ b/src/Authentication/Authentication/StartupScripts/InitializeAssemblyResolver.ps1
@@ -0,0 +1,11 @@
+try {
+ if ($PSEdition -eq 'Core') {
+ [Microsoft.Graph.PowerShell.Authentication.Utilities.DependencyAssemblyResolver]::Initialize()
+ }
+ else {
+ [Microsoft.Graph.PowerShell.Authentication.Utilities.DependencyAssemblyResolver]::Initialize($true)
+ }
+}
+catch {
+ Write-Warning $_
+}
\ No newline at end of file
diff --git a/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs b/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs
new file mode 100644
index 00000000000..82fe833d2dc
--- /dev/null
+++ b/src/Authentication/Authentication/Utilities/DependencyAssemblyResolver.cs
@@ -0,0 +1,101 @@
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+namespace Microsoft.Graph.PowerShell.Authentication.Utilities
+{
+ using System;
+ using System.Collections.Generic;
+ using System.IO;
+ using System.Reflection;
+ public static class DependencyAssemblyResolver
+ {
+ // Catalog our dependencies here to ensure we don't load anything else.
+ private static IReadOnlyDictionary Dependencies = new Dictionary
+ {
+ { "Microsoft.Identity.Client", new Version("4.23.0.0") },
+ { "Microsoft.Graph.Auth", new Version("1.0.0.0") },
+ { "Microsoft.IdentityModel.Tokens", new Version("5.6.0.61018") },
+ { "Microsoft.IdentityModel.Logging", new Version("5.6.0.61018") },
+ { "Microsoft.IdentityModel.JsonWebTokens", new Version("5.6.0.61018") },
+ { "System.IdentityModel.Tokens.Jwt", new Version("5.6.0.61018") },
+ { "System.Security.Cryptography.ProtectedData", new Version("4.3.0.0") },
+ { "Newtonsoft.Json", new Version("10.0.3.21018") },
+ };
+
+ ///
+ /// Dependencies that need to be loaded per framework.
+ ///
+ private static IList MultiFrameworkDependencies = new List {
+ "Microsoft.Identity.Client",
+ "System.Security.Cryptography.ProtectedData"
+ };
+
+ // Set up the path to our dependency directory within the module.
+ private static string DependenciesDirPath = Path.GetFullPath(Path.Combine(
+ Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Dependencies"));
+
+ ///
+ /// Framework dependency path. /Desktop for PS 5.1, and /Core for PS 6+.
+ ///
+ private static string FrameworkDependenciesDirPath;
+
+ ///
+ /// Initializes our custom assembly resolve event handler. This should be called on module import.
+ ///
+ ///
+ public static void Initialize(bool isDesktopEdition = false)
+ {
+ if (isDesktopEdition)
+ {
+ FrameworkDependenciesDirPath = "Desktop";
+ }
+ else
+ {
+ FrameworkDependenciesDirPath = "Core";
+ }
+ // Set up our event handler when the module is loaded.
+ AppDomain.CurrentDomain.AssemblyResolve += HandleResolveEvent;
+ }
+
+ ///
+ /// Remove our custom assembly resolve event handler from the current app domain.
+ /// This should be called when our module is removed.
+ ///
+ internal static void Reset()
+ {
+ // Remove our event hander when the module is unloaded.
+ AppDomain.CurrentDomain.AssemblyResolve -= HandleResolveEvent;
+ }
+
+
+ private static Assembly HandleResolveEvent(object sender, ResolveEventArgs args)
+ {
+ try
+ {
+ AssemblyName assemblymName = new AssemblyName(args.Name);
+ // We try to resolve our dependencies on our own.
+ if (Dependencies.TryGetValue(assemblymName.Name, out Version requiredVersion)
+ && requiredVersion >= assemblymName.Version
+ && (requiredVersion.Major == assemblymName.Version.Major || string.Equals(assemblymName.Name, "Newtonsoft.Json", StringComparison.OrdinalIgnoreCase)))
+ {
+ string requiredAssemblyPath = string.Empty;
+ if (MultiFrameworkDependencies.Contains(assemblymName.Name))
+ {
+ requiredAssemblyPath = Path.Combine(DependenciesDirPath, FrameworkDependenciesDirPath, $"{assemblymName.Name}.dll");
+ }
+ else
+ {
+ requiredAssemblyPath = Path.Combine(DependenciesDirPath, $"{assemblymName.Name}.dll");
+ }
+ return Assembly.LoadFile(requiredAssemblyPath);
+ }
+ }
+ catch
+ {
+ // If an error is encountered, we fall back to PowerShell's default dependency resolution.
+ }
+ return null;
+ }
+ }
+}
diff --git a/src/Authentication/Authentication/build-module.ps1 b/src/Authentication/Authentication/build-module.ps1
index e75aa4200cb..c6403a143b7 100644
--- a/src/Authentication/Authentication/build-module.ps1
+++ b/src/Authentication/Authentication/build-module.ps1
@@ -1,51 +1,117 @@
-param([switch]$Isolated, [switch]$Pack, [switch]$Release)
+param(
+ [switch]$Isolated,
+ [switch]$Pack,
+ [switch]$Release
+)
+
$ErrorActionPreference = 'Stop'
+$ModuleName = "Authentication"
+$ModulePrefix = "Microsoft.Graph"
+$netStandard = "netstandard2.0"
+$netCoreApp = "netcoreapp2.1"
+$netFx = "net461"
+$copyExtensions = @('.dll', '.pdb')
+
+# Source code locations
+$coreSrc = Join-Path $PSScriptRoot "../$ModuleName.Core"
+$cmdletsSrc = Join-Path $PSScriptRoot "../$ModuleName"
-if($PSEdition -ne 'Core') {
+# Generated output locations
+$outDir = "$PSScriptRoot/artifacts"
+$outDeps = "$outDir/Dependencies"
+$outCore = "$outDeps/Core"
+$outDesktop = "$outDeps/Desktop"
+
+if ($PSEdition -ne 'Core') {
Write-Error 'This script requires PowerShell Core to execute. [Note] Generated cmdlets will work in both PowerShell Core or Windows PowerShell.'
}
-if(-not $Isolated) {
+$Configuration = 'Debug'
+if ($Release) {
+ $Configuration = 'Release'
+}
+
+if (-not $Isolated) {
Write-Host -ForegroundColor Green 'Creating isolated process...'
$pwsh = [System.Diagnostics.Process]::GetCurrentProcess().Path
& "$pwsh" -NonInteractive -NoLogo -NoProfile -File $MyInvocation.MyCommand.Path @PSBoundParameters -Isolated
- if($LastExitCode -ne 0) {
+ if ($LastExitCode -ne 0) {
# Build failed. Don't attempt to run the module.
return
}
- if($Pack) {
+ if ($Pack) {
. (Join-Path $PSScriptRoot 'pack-module.ps1')
- if($LastExitCode -ne 0) {
+ if ($LastExitCode -ne 0) {
# Packing failed. Don't attempt to run the module.
return
}
}
-
return
}
+# Clean build folders.
Write-Host -ForegroundColor Green 'Cleaning build folders...'
-$binFolder = Join-Path $PSScriptRoot 'bin'
-$objFolder = Join-Path $PSScriptRoot 'obj'
-$null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path $binFolder, $objFolder
+$null = Remove-Item -Path "$coreSrc/bin", "$coreSrc/obj" -Recurse -ErrorAction Ignore
+$null = Remove-Item -Path "$cmdletsSrc/bin", "$cmdletsSrc/obj" -Recurse -ErrorAction Ignore
-if((Test-Path $binFolder) -or (Test-Path $objFolder)) {
+if ((Test-Path "$cmdletsSrc/bin") -or (Test-Path "$cmdletsSrc/obj")) {
Write-Host -ForegroundColor Cyan 'Did you forget to exit your isolated module session before rebuilding?'
Write-Error 'Unable to clean ''bin'' or ''obj'' folder. A process may have an open handle.'
}
Write-Host -ForegroundColor Green 'Compiling module...'
-$buildConfig = 'Debug'
-if($Release) {
- $buildConfig = 'Release'
-}
-dotnet publish $PSScriptRoot --verbosity quiet --configuration $buildConfig /nologo
+# Build authentication.core for each framework.
+Push-Location $coreSrc
+dotnet publish -c $Configuration -f $netStandard --verbosity quiet /nologo
+dotnet publish -c $Configuration -f $netCoreApp --verbosity quiet /nologo
+dotnet publish -c $Configuration -f $netFx --verbosity quiet /nologo
+Pop-Location
+
+# Build authentication.
+Push-Location $cmdletsSrc
+dotnet publish -c $Configuration --verbosity quiet /nologo
+Pop-Location
-if($LastExitCode -ne 0) {
+if ($LastExitCode -ne 0) {
Write-Error 'Compilation failed.'
}
-$null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release')
+# Ensure out directory exists and is clean.
+Remove-Item -Path $outDir -Recurse -ErrorAction Ignore
+New-Item -Path $outDir -ItemType Directory
+New-Item -Path $outDeps -ItemType Directory
+New-Item -Path $outCore -ItemType Directory
+New-Item -Path $outDesktop -ItemType Directory
+
+# Copy manifest.
+Copy-Item -Path "$cmdletsSrc/$ModulePrefix.$ModuleName.format.ps1xml" -Destination $outDir
+Copy-Item -Path "$cmdletsSrc/$ModulePrefix.$ModuleName.psm1" -Destination $outDir
+Copy-Item -Path "$cmdletsSrc/$ModulePrefix.$ModuleName.psd1" -Destination $outDir
+Copy-Item -Path "$cmdletsSrc/StartupScripts" -Recurse -Destination $outDir
+
+# Core assemblies to include with cmdlets (Let PowerShell load them).
+$CoreAssemblies = @('Microsoft.Graph.Authentication.Core', 'Microsoft.Graph.Core')
+
+# Copy each authentication.core asset to out directory and remember it.
+$Deps = [System.Collections.Generic.HashSet[string]]::new()
+Get-ChildItem -Path "$coreSrc/bin/$Configuration/$netStandard/publish/" |
+Where-Object { $_.Extension -in $copyExtensions } |
+Where-Object { -not $CoreAssemblies.Contains($_.BaseName) } |
+ForEach-Object { [void]$Deps.Add($_.Name); Copy-Item -Path $_.FullName -Destination $outDeps }
+
+Get-ChildItem -Path "$coreSrc/bin/$Configuration/$netCoreApp/publish/" |
+Where-Object { -not $CoreAssemblies.Contains($_.BaseName) } |
+ForEach-Object { [void]$Deps.Add($_.Name); Copy-Item -Path $_.FullName -Destination $outCore }
+
+Get-ChildItem -Path "$coreSrc/bin/$Configuration/$netFx/publish/" |
+Where-Object { -not $CoreAssemblies.Contains($_.BaseName) } |
+ForEach-Object { [void]$Deps.Add($_.Name); Copy-Item -Path $_.FullName -Destination $outDesktop }
+
+# Now copy each authentication asset, not taking any found in authentication.core.
+Get-ChildItem -Path "$cmdletsSrc/bin/$Configuration/$netStandard/publish/" |
+Where-Object { -not $Deps.Contains($_.Name) -and $_.Extension -in $copyExtensions } |
+ForEach-Object { Copy-Item -Path $_.FullName -Destination $outDir }
+
Write-Host -ForegroundColor Green '-------------Done-------------'
\ No newline at end of file
diff --git a/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1 b/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1
index 762045ba529..76845efcd07 100644
--- a/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1
+++ b/src/Authentication/Authentication/test/Connect-MgGraph.Tests.ps1
@@ -1,6 +1,6 @@
BeforeAll {
$ModuleName = "Microsoft.Graph.Authentication"
- $ModulePath = Join-Path $PSScriptRoot "..\$ModuleName.psd1"
+ $ModulePath = Join-Path $PSScriptRoot "..\artifacts\$ModuleName.psd1"
Import-Module $ModulePath -Force
$RandomClientId = (New-Guid).Guid
}
@@ -22,4 +22,15 @@ Describe 'Connect-MgGraph In App Mode' {
It 'ShouldThrowExceptionWhenCertificateThumbprintLengthIs < 40' {
{ Connect-MgGraph -ClientId $RandomClientId -CertificateThumbprint '123456789012345678901234567890123456789' -ErrorAction Stop } | Should -Throw -ExpectedMessage "*'CertificateThumbprint' must have a length of 40.*"
}
+
+}
+Describe 'Connect-MgGraph Depencency Resolution' {
+ BeforeAll {
+ Install-Module Az.Accounts -Repository PSGallery -Force
+ }
+
+ It 'ShouldLoadMgModuleSideBySideWithAzModule.' {
+ { Connect-AzAccount -ApplicationId $RandomClientId -CertificateThumbprint "Invalid" -Tenant "Invalid" -ErrorAction Stop } | Should -Throw -ExpectedMessage "*Could not find tenant id*"
+ { Connect-MgGraph -Scopes "inavid.scope" -ErrorAction Stop } | Should -Throw -ExpectedMessage "*AADSTS70011:*"
+ }
}
\ No newline at end of file
diff --git a/src/Authentication/Authentication/test/Invoke-MgGraphRequest.Tests.ps1 b/src/Authentication/Authentication/test/Invoke-MgGraphRequest.Tests.ps1
index 0d643681ea9..b3a90dcd091 100644
--- a/src/Authentication/Authentication/test/Invoke-MgGraphRequest.Tests.ps1
+++ b/src/Authentication/Authentication/test/Invoke-MgGraphRequest.Tests.ps1
@@ -5,8 +5,9 @@
}
. ($loadEnvPath)
$ModuleName = "Microsoft.Graph.Authentication"
- $ModulePath = Join-Path $PSScriptRoot "..\$ModuleName.psd1"
+ $ModulePath = Join-Path $PSScriptRoot "..\artifacts\$ModuleName.psd1"
Import-Module $ModulePath -Force
+ $PSDefaultParameterValues=@{"Connect-MgGraph:TenantId"=${env:TENANTIDENTIFIER}; "Connect-MgGraph:ClientId"=${env:CLIENTIDENTIFIER}; "Connect-MgGraph:CertificateThumbprint"=${env:CERTIFICATETHUMBPRINT}}
}
Describe 'Invoke-MgGraphRequest Collection Results' {
BeforeAll {
diff --git a/src/Bookings/Bookings/readme.md b/src/Bookings/Bookings/readme.md
index 514724c822a..2acb273bbe2 100644
--- a/src/Bookings/Bookings/readme.md
+++ b/src/Bookings/Bookings/readme.md
@@ -35,6 +35,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Calendar/Calendar/readme.md b/src/Calendar/Calendar/readme.md
index 57e9d68b1e9..e5da3a8c34e 100644
--- a/src/Calendar/Calendar/readme.md
+++ b/src/Calendar/Calendar/readme.md
@@ -52,6 +52,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/ChangeNotifications/ChangeNotifications/readme.md b/src/ChangeNotifications/ChangeNotifications/readme.md
index f4bdbeb3d45..ea6aa444463 100644
--- a/src/ChangeNotifications/ChangeNotifications/readme.md
+++ b/src/ChangeNotifications/ChangeNotifications/readme.md
@@ -34,6 +34,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/CloudCommunications/CloudCommunications/readme.md b/src/CloudCommunications/CloudCommunications/readme.md
index b9066e5a01b..645dc789f9f 100644
--- a/src/CloudCommunications/CloudCommunications/readme.md
+++ b/src/CloudCommunications/CloudCommunications/readme.md
@@ -59,6 +59,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Compliance/Compliance/readme.md b/src/Compliance/Compliance/readme.md
index c54fd4b435d..7d20e9ee3ab 100644
--- a/src/Compliance/Compliance/readme.md
+++ b/src/Compliance/Compliance/readme.md
@@ -47,6 +47,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md
index 34d34c33d7c..d43cb270da9 100644
--- a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md
+++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md
@@ -34,6 +34,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md
index 873d7caf45f..19803af9239 100644
--- a/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md
+++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md
@@ -76,6 +76,11 @@ directive:
subject: ^(DeviceManagementIntent)(Setting)$
set:
subject: $1Multiple$2
+ - where:
+ verb: Remove
+ subject: ^(DeviceManagementWindowAutopilotDeploymentProfile)(AssignedDevice)$
+ set:
+ subject: $1Multiple$2
- where:
verb: Update
subject: ^(DeviceManagementManagedDevice)$
@@ -86,6 +91,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md
index 463be81240a..e99207d156a 100644
--- a/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md
+++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md
@@ -51,6 +51,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md
index 4f8f309e208..d569c79ac76 100644
--- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md
+++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md
@@ -31,9 +31,20 @@ require:
title: $(service-name)
subject-prefix: ''
```
+
+### Directives
+
+> see https://github.com/Azure/autorest/blob/master/docs/powershell/directives.md
+
+``` yaml
+directive:
+# Remove invalid paths.
+ - remove-path-by-operation: ^deviceManagement_.*UserExperienceAnalytics.*$
+```
+
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md
index 244db15be56..78d089c74c9 100644
--- a/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md
+++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md
@@ -57,6 +57,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DeviceManagement/DeviceManagement/readme.md b/src/DeviceManagement/DeviceManagement/readme.md
index 85072898968..7e38cc30287 100644
--- a/src/DeviceManagement/DeviceManagement/readme.md
+++ b/src/DeviceManagement/DeviceManagement/readme.md
@@ -77,6 +77,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/readme.md b/src/Devices.CloudPrint/Devices.CloudPrint/readme.md
index 24a4d824254..084dcc316eb 100644
--- a/src/Devices.CloudPrint/Devices.CloudPrint/readme.md
+++ b/src/Devices.CloudPrint/Devices.CloudPrint/readme.md
@@ -48,6 +48,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md b/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md
index 353fb96404c..526fb534f63 100644
--- a/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md
+++ b/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md
@@ -86,6 +86,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/DirectoryObjects/DirectoryObjects/readme.md b/src/DirectoryObjects/DirectoryObjects/readme.md
index f59bed5b8e4..ca4114ed6b4 100644
--- a/src/DirectoryObjects/DirectoryObjects/readme.md
+++ b/src/DirectoryObjects/DirectoryObjects/readme.md
@@ -54,6 +54,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Education/Education/readme.md b/src/Education/Education/readme.md
index 0c5702763ca..7ebc6978f31 100644
--- a/src/Education/Education/readme.md
+++ b/src/Education/Education/readme.md
@@ -35,6 +35,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Files/Files/readme.md b/src/Files/Files/readme.md
index d9586721c1e..de7745c3c21 100644
--- a/src/Files/Files/readme.md
+++ b/src/Files/Files/readme.md
@@ -43,6 +43,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Financials/Financials/readme.md b/src/Financials/Financials/readme.md
index 7a3445ecb2e..52bd63027db 100644
--- a/src/Financials/Financials/readme.md
+++ b/src/Financials/Financials/readme.md
@@ -57,6 +57,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Groups/Groups/readme.md b/src/Groups/Groups/readme.md
index 2821a8fe2ab..d93fcf3e3a3 100644
--- a/src/Groups/Groups/readme.md
+++ b/src/Groups/Groups/readme.md
@@ -137,6 +137,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md
index bb52f331a13..4cde72065ae 100644
--- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md
+++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md
@@ -127,6 +127,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Identity.Governance/Identity.Governance/readme.md b/src/Identity.Governance/Identity.Governance/readme.md
index 2d6dad60a4c..c6bc092acce 100644
--- a/src/Identity.Governance/Identity.Governance/readme.md
+++ b/src/Identity.Governance/Identity.Governance/readme.md
@@ -41,8 +41,179 @@ directive:
- remove-path-by-operation: ^identityGovernance_(Get|Create|Update|Set|Delete)EntitlementManagement$|^identityGovernance\.entitlementManagement(_.*AccessPackageResourceRoleScopes|\.accessPackageResourceRoleScopes.*|\.accessPackageAssignmentPolicies\..*|\.accessPackageAssignmentRequests\..*|\.accessPackageAssignmentResourceRoles\..*|\.accessPackageAssignments\..*|\.accessPackageCatalogs\..*|\.accessPackageResourceRequests\..*|\.accessPackageResources\..*|\.accessPackages\..*)$
# Remove cmdlets
- where:
- subject: AgreementFile
- variant: Get(2|3)|GetViaIdentity(2|3)|Delete(1|3)|DeleteViaIdentity(1|3)|Update(1|3)|UpdateExpanded(1|3)|UpdateViaIdentity(1|3)|UpdateViaIdentityExpanded(1|3)
+ verb: Get
+ subject: ^AgreementFile$
+ variant: ^Get2|Get3|GetViaIdentity2|GetViaIdentity3$
+ remove: true
+ - where:
+ verb: Update
+ subject: ^AgreementFile$
+ variant: ^Update2|Update3|UpdateExpanded2|UpdateExpanded3|UpdateViaIdentity2|UpdateViaIdentity3|UpdateViaIdentityExpanded2|UpdateViaIdentityExpanded3$
+ remove: true
+ - where:
+ verb: Remove
+ subject: ^AgreementFile$
+ variant: ^Delete1|Delete3|DeleteViaIdentity1|DeleteViaIdentity3$
+ remove: true
+ - where:
+ verb: Get|Remove|Set
+ subject: (.*)(EntitlementManagement)AccessPackageRefAccessPackageCatalog$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentAccessPackage$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentAccessPackageAssignmentPolicy$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentAccessPackageAssignmentRequest$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentAccessPackageAssignmentResourceRole$
+ remove: true
+ - where:
+ verb: Get|New
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentApproval$
+ remove: true
+ - where:
+ verb: Get|New
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentApprovalStep$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentPolicyAccessPackage$
+ remove: true
+ - where:
+ verb: Get|Set|Remove
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentPolicyRefAccessPackage$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentPolicyAccessPackageCatalog$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentRequestAccessPackage$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentRequestAccessPackageAssignment$
+ remove: true
+ - where:
+ verb: Get|Remove|Set
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentRequestRefAccessPackage$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentRequestRequestor$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRoleAccessPackageAssignment$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRoleAccessPackageResourceRole$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRoleAccessPackageResourceScope$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRoleAccessPackageSubject$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentTarget$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackage$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageResourceAccessPackageResourceEnvironment$
+ remove: true
+ - where:
+ verb: Get|Remove|Set
+ subject: (.*)(EntitlementManagement)AccessPackageResourceRefAccessPackageResourceEnvironment$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageResourceAccessPackageResourceRole$
+ remove: true
+ - where:
+ verb: Get|New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageResourceAccessPackageResourceScope$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageResourceEnvironmentAccessPackageResource$
+ remove: true
+ - where:
+ verb: Get|New
+ subject: (.*)(EntitlementManagement)AccessPackageResourceEnvironmentRefAccessPackageResource$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageResourceRequestAccessPackageResource$
+ remove: true
+ - where:
+ verb: Get|Remove|Set
+ subject: (.*)(EntitlementManagement)AccessPackageResourceRequestRefAccessPackageResource$
+ remove: true
+ - where:
+ verb: Get|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageResourceRequestRequestor$
+ remove: true
+ - where:
+ verb: Get
+ subject: (.*)(EntitlementManagement)AccessPackageResourceRoleScope$
+ remove: true
+ - where:
+ verb: New
+ subject: (.*)(EntitlementManagement)AccessPackageAssignment$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageAssignmentResourceRole$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResourceRole$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResourceScope$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageResource$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageResourceEnvironment$
+ remove: true
+ - where:
+ verb: Search
+ subject: (.*)(EntitlementManagement)AccessPackage$
+ remove: true
+ - where:
+ verb: Search
+ subject: (.*)(EntitlementManagement)AccessPackageCatalog$
+ remove: true
+ - where:
+ verb: New|Remove|Update
+ subject: (.*)(EntitlementManagement)AccessPackageCatalogAccessPackageResource$
+ remove: true
+ - where:
+ verb: Remove
+ subject: (.*)(EntitlementManagement)Setting$
remove: true
# Rename cmdlets with duplicates in their name.
- where:
@@ -79,6 +250,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Identity.SignIns/Identity.SignIns/readme.md b/src/Identity.SignIns/Identity.SignIns/readme.md
index b7f5c57e5c1..ba4c4807a93 100644
--- a/src/Identity.SignIns/Identity.SignIns/readme.md
+++ b/src/Identity.SignIns/Identity.SignIns/readme.md
@@ -56,6 +56,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Identity.SignIns/Identity.SignIns/test/v1.0-beta/New-MgInvitation.Tests.ps1 b/src/Identity.SignIns/Identity.SignIns/test/v1.0-beta/New-MgInvitation.Tests.ps1
index da32b80221b..8f724ee3f22 100644
--- a/src/Identity.SignIns/Identity.SignIns/test/v1.0-beta/New-MgInvitation.Tests.ps1
+++ b/src/Identity.SignIns/Identity.SignIns/test/v1.0-beta/New-MgInvitation.Tests.ps1
@@ -31,7 +31,7 @@ Describe 'New-MgInvitation' {
InviteRedirectUrl = 'https://myapp.contoso.com'
}
$Invitation = New-MgInvitation @Params
- $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation1'
+ $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation'
$Invitation | Should -HaveCount 1
$Invitation.InvitedUserDisplayName | Should -Be $env.Users[0].DisplayName
$Invitation.Status | Should -Be 'PendingAcceptance'
@@ -59,7 +59,7 @@ Describe 'New-MgInvitation' {
InviteRedirectUrl = 'https://myapp.contoso.com'
}
$Invitation = New-MgInvitation -BodyParameter $Params
- $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation1'
+ $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation'
$Invitation | Should -HaveCount 1
$Invitation.InvitedUserDisplayName | Should -Be $env.Users[0].DisplayName
$Invitation.Status | Should -Be 'PendingAcceptance'
diff --git a/src/Identity.SignIns/Identity.SignIns/test/v1.0/New-MgInvitation.Tests.ps1 b/src/Identity.SignIns/Identity.SignIns/test/v1.0/New-MgInvitation.Tests.ps1
index c30467a04f2..50a293fe2f3 100644
--- a/src/Identity.SignIns/Identity.SignIns/test/v1.0/New-MgInvitation.Tests.ps1
+++ b/src/Identity.SignIns/Identity.SignIns/test/v1.0/New-MgInvitation.Tests.ps1
@@ -31,7 +31,7 @@ Describe 'New-MgInvitation' {
InviteRedirectUrl = 'https://myapp.contoso.com'
}
$Invitation = New-MgInvitation @Params
- $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation'
+ $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation1'
$Invitation | Should -HaveCount 1
$Invitation.InvitedUserDisplayName | Should -Be $env.Users[0].DisplayName
$Invitation.Status | Should -Be 'PendingAcceptance'
@@ -59,7 +59,7 @@ Describe 'New-MgInvitation' {
InviteRedirectUrl = 'https://myapp.contoso.com'
}
$Invitation = New-MgInvitation -BodyParameter $Params
- $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation'
+ $Invitation | Should -BeOfType -ExpectedType 'Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation1'
$Invitation | Should -HaveCount 1
$Invitation.InvitedUserDisplayName | Should -Be $env.Users[0].DisplayName
$Invitation.Status | Should -Be 'PendingAcceptance'
diff --git a/src/Mail/Mail/readme.md b/src/Mail/Mail/readme.md
index 94b216d7a33..d609ac1f89c 100644
--- a/src/Mail/Mail/readme.md
+++ b/src/Mail/Mail/readme.md
@@ -34,6 +34,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Notes/Notes/readme.md b/src/Notes/Notes/readme.md
index 026318b7542..5c319442aec 100644
--- a/src/Notes/Notes/readme.md
+++ b/src/Notes/Notes/readme.md
@@ -44,6 +44,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/People/People/readme.md b/src/People/People/readme.md
index b4a56b3e556..dfb4729ad5e 100644
--- a/src/People/People/readme.md
+++ b/src/People/People/readme.md
@@ -74,6 +74,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/PersonalContacts/PersonalContacts/readme.md b/src/PersonalContacts/PersonalContacts/readme.md
index 49235e52f86..23122a71745 100644
--- a/src/PersonalContacts/PersonalContacts/readme.md
+++ b/src/PersonalContacts/PersonalContacts/readme.md
@@ -34,6 +34,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Planner/Planner/readme.md b/src/Planner/Planner/readme.md
index c390964e49e..e859b433f9a 100644
--- a/src/Planner/Planner/readme.md
+++ b/src/Planner/Planner/readme.md
@@ -46,6 +46,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Reports/Reports/readme.md b/src/Reports/Reports/readme.md
index 35b50287d31..01e84d63c84 100644
--- a/src/Reports/Reports/readme.md
+++ b/src/Reports/Reports/readme.md
@@ -81,6 +81,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/SchemaExtensions/SchemaExtensions/readme.md b/src/SchemaExtensions/SchemaExtensions/readme.md
index 0206352d391..4b12e6f685c 100644
--- a/src/SchemaExtensions/SchemaExtensions/readme.md
+++ b/src/SchemaExtensions/SchemaExtensions/readme.md
@@ -35,6 +35,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Search/Search/readme.md b/src/Search/Search/readme.md
index 08cd4278839..3a29ab41876 100644
--- a/src/Search/Search/readme.md
+++ b/src/Search/Search/readme.md
@@ -35,6 +35,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Security/Security/readme.md b/src/Security/Security/readme.md
index 0a2c8d39d27..fc004a5d588 100644
--- a/src/Security/Security/readme.md
+++ b/src/Security/Security/readme.md
@@ -73,6 +73,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Sites/Sites/readme.md b/src/Sites/Sites/readme.md
index 0b75b8b5361..cf308ef3138 100644
--- a/src/Sites/Sites/readme.md
+++ b/src/Sites/Sites/readme.md
@@ -110,6 +110,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Teams/Teams/readme.md b/src/Teams/Teams/readme.md
index ae9dedca999..590d67c8cf4 100644
--- a/src/Teams/Teams/readme.md
+++ b/src/Teams/Teams/readme.md
@@ -44,6 +44,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Users.Actions/Users.Actions/readme.md b/src/Users.Actions/Users.Actions/readme.md
index 9f0115b0f83..7b2820c82f7 100644
--- a/src/Users.Actions/Users.Actions/readme.md
+++ b/src/Users.Actions/Users.Actions/readme.md
@@ -124,6 +124,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Users.Functions/Users.Functions/readme.md b/src/Users.Functions/Users.Functions/readme.md
index 876d129de42..c0686c94130 100644
--- a/src/Users.Functions/Users.Functions/readme.md
+++ b/src/Users.Functions/Users.Functions/readme.md
@@ -61,6 +61,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/src/Users/Users/readme.md b/src/Users/Users/readme.md
index 98e182c95f6..1e8f86a0fb6 100644
--- a/src/Users/Users/readme.md
+++ b/src/Users/Users/readme.md
@@ -53,6 +53,6 @@ directive:
### Versioning
``` yaml
-module-version: 1.4.2
+module-version: 1.5.0
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/tools/BuildModule.ps1 b/tools/BuildModule.ps1
index 74bd7688034..6a4240fad56 100644
--- a/tools/BuildModule.ps1
+++ b/tools/BuildModule.ps1
@@ -16,6 +16,7 @@ if ($PSEdition -ne "Core") {
}
$NuspecHelperPS1 = Join-Path $PSScriptRoot "./NuspecHelper.ps1"
+$CSProjHelperPS1 = Join-Path $PSScriptRoot "./CSProjHelper.ps1"
$ModuleProjLocation = Join-Path $PSScriptRoot "../src/$Module/$Module"
$BuildModulePS1 = Join-Path $ModuleProjLocation "/build-module.ps1"
$ModuleCsProj = Join-Path $ModuleProjLocation "$ModulePrefix.$Module.csproj"
@@ -25,27 +26,19 @@ $ModuleNuspec = Join-Path $ModuleProjLocation "$ModulePrefix.$Module.nuspec"
# Import scripts
. $NuspecHelperPS1
+. $CSProjHelperPS1
if (-not (Test-Path -Path $BuildModulePS1)) {
Write-Error "Build script file '$BuildModulePS1' not found for '$Module' module."
}
# Set delay sign to true.
-
-$ModuleProjDoc = New-Object System.Xml.XmlDocument
-$ModuleProjDoc.Load($ModuleCsProj)
-$ModuleProjElement = [System.Xml.XmlElement] $ModuleProjDoc.DocumentElement.FirstChild
if ($EnableSigning) {
- Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "AssemblyOriginatorKeyFile" -ElementValue (Join-Path $PSScriptRoot $NuspecMetadata["assemblyOriginatorKeyFile"])
- Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "DelaySign" -ElementValue "true"
- Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "SignAssembly" -ElementValue "true"
+ Set-CSProjValues -ModuleCsProj $ModuleCsProj -ModuleVersion $ModuleVersion -AssemblyOriginatorKeyFile $NuspecMetadata["assemblyOriginatorKeyFile"]
+}
+else {
+ Set-CSProjValues -ModuleCsProj $ModuleCsProj -ModuleVersion $ModuleVersion -Copyright $NuspecMetadata["copyright"]
}
-Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "Copyright" -ElementValue $NuspecMetadata["copyright"]
-Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "Version" -ElementValue $ModuleVersion
-
-$ModuleProjDoc.Save($ModuleCsProj)
-Write-Host "Updated the .csproj."
-
# Build module
Write-Host -ForegroundColor Green "Building '$Module' module..."
@@ -55,10 +48,10 @@ if ($LASTEXITCODE) {
}
[HashTable]$ModuleManifestSettings = @{
- Path = $ModuleManifest
- ModuleVersion = $ModuleVersion
- IconUri = $NuspecMetadata["iconUri"]
- ReleaseNotes = $ReleaseNotes
+ Path = $ModuleManifest
+ ModuleVersion = $ModuleVersion
+ IconUri = $NuspecMetadata["iconUri"]
+ ReleaseNotes = $ReleaseNotes
}
$FullVersionNumber = $ModuleVersion
diff --git a/tools/CSProjHelper.ps1 b/tools/CSProjHelper.ps1
new file mode 100644
index 00000000000..65150f373a8
--- /dev/null
+++ b/tools/CSProjHelper.ps1
@@ -0,0 +1,35 @@
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License.
+
+function Set-CSProjValues(
+ [parameter(Mandatory = $true)][string] $ModuleCsProj,
+ [parameter(Mandatory = $true)][string] $ModuleVersion,
+ [string] $Copyright,
+ [string] $AssemblyOriginatorKeyFile) {
+ $NuspecHelperPS1 = Join-Path $PSScriptRoot "./NuspecHelper.ps1"
+
+ # Import scripts
+ . $NuspecHelperPS1
+
+ # Set delay sign to true.
+ $ModuleProjDoc = New-Object System.Xml.XmlDocument
+ $ModuleProjDoc.Load($ModuleCsProj)
+ if ($ModuleProjDoc.DocumentElement.PropertyGroup.Count -gt 1) {
+ $ModuleProjElement = [System.Xml.XmlElement] $ModuleProjDoc.DocumentElement.PropertyGroup[0]
+ } else {
+ $ModuleProjElement = [System.Xml.XmlElement] $ModuleProjDoc.DocumentElement.PropertyGroup
+ }
+
+ if (![string]::IsNullOrWhiteSpace($AssemblyOriginatorKeyFile)) {
+ Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "AssemblyOriginatorKeyFile" -ElementValue (Join-Path $PSScriptRoot $AssemblyOriginatorKeyFile)
+ Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "DelaySign" -ElementValue "true"
+ Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "SignAssembly" -ElementValue "true"
+ }
+ if (![string]::IsNullOrWhiteSpace($Copyright)) {
+ Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "Copyright" -ElementValue $Copyright
+ }
+ Set-ElementValue -XmlDocument $ModuleProjDoc -MetadataElement $ModuleProjElement -ElementName "Version" -ElementValue $ModuleVersion
+
+ $ModuleProjDoc.Save($ModuleCsProj)
+ Write-Host "Updated the $ModuleCsProj."
+}
\ No newline at end of file
diff --git a/tools/GenerateAuthenticationModule.ps1 b/tools/GenerateAuthenticationModule.ps1
index abd5de076b8..35f8d63b507 100644
--- a/tools/GenerateAuthenticationModule.ps1
+++ b/tools/GenerateAuthenticationModule.ps1
@@ -27,12 +27,19 @@ if ($PSEdition -ne 'Core') {
$ModulePrefix = "Microsoft.Graph"
$ModuleName = "Authentication"
$AuthModuleManifest = "Microsoft.Graph.Authentication.psd1"
+$SigningKeyFile = "35MSSharedLib1024.snk"
$BuildModulePS1 = Join-Path $PSScriptRoot ".\BuildModule.ps1" -Resolve
$PackModulePS1 = Join-Path $PSScriptRoot ".\PackModule.ps1" -Resolve
$PublishModulePS1 = Join-Path $PSScriptRoot ".\PublishModule.ps1" -Resolve
$ValidateUpdatedModuleVersionPS1 = Join-Path $PSScriptRoot ".\ValidateUpdatedModuleVersion.ps1" -Resolve
-$AuthModulePath = Join-Path $PSScriptRoot "..\src\Authentication\Authentication\" -Resolve
+$AuthSrcPath = Join-Path $PSScriptRoot "..\src\Authentication\"
+$AuthModulePath = Join-Path $AuthSrcPath "Authentication" -Resolve
$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve
+$AuthCoreCSProj = Join-Path $AuthSrcPath "$ModuleName.Core" "$ModulePrefix.$ModuleName.Core.csproj"
+$CSProjHelperPS1 = Join-Path $PSScriptRoot "./CSProjHelper.ps1"
+
+# Import scripts
+. $CSProjHelperPS1
# Read ModuleVersion set on local auth module.
$ManifestContent = Import-LocalizedData -BaseDirectory $AuthModulePath -FileName $AuthModuleManifest
@@ -41,8 +48,8 @@ if ($null -eq $ManifestContent.ModuleVersion) {
Write-Error "Version number is not set on $ModulePrefix.$ModuleName module. Please set 'ModuleVersion' in $AuthModulePath\$AuthModuleManifest."
}
$AllowPreRelease = $true
-if($ModulePreviewNumber -eq -1) {
- $AllowPreRelease = $false
+if ($ModulePreviewNumber -eq -1) {
+ $AllowPreRelease = $false
}
# Validate module version with the one on PSGallery.
[VersionState]$VersionState = & $ValidateUpdatedModuleVersionPS1 -ModuleName "$ModulePrefix.$ModuleName" -NextVersion $ManifestContent.ModuleVersion -PSRepository $RepositoryName -ModulePreviewNumber $ModulePreviewNumber
@@ -54,18 +61,20 @@ elseif ($VersionState.Equals([VersionState]::EqualToFeed) -and !$BuildWhenEqual)
Write-Warning "$ModulePrefix.$ModuleName module skipped. Version has not changed and is equal to what's on $RepositoryName."
}
elseif ($VersionState.Equals([VersionState]::Valid) -or $VersionState.Equals([VersionState]::NotOnFeed) -or $BuildWhenEqual) {
- $ModuleVersion = $VersionState.Equals([VersionState]::NotOnFeed) ? "0.1.1" : $ManifestContent.ModuleVersion
+ $ModuleVersion = $ManifestContent.ModuleVersion
# Build and pack generated module.
if ($Build) {
if ($EnableSigning) {
+ Set-CSProjValues -ModuleCsProj $AuthCoreCSProj -ModuleVersion $ModuleVersion -AssemblyOriginatorKeyFile $SigningKeyFile
& $BuildModulePS1 -Module $ModuleName -ModulePrefix $ModulePrefix -ModuleVersion $ModuleVersion -ModulePreviewNumber $ModulePreviewNumber -ReleaseNotes $ManifestContent.PrivateData.PSData.ReleaseNotes -EnableSigning
}
else {
+ Set-CSProjValues -ModuleCsProj $AuthCoreCSProj -ModuleVersion $ModuleVersion
& $BuildModulePS1 -Module $ModuleName -ModulePrefix $ModulePrefix -ModuleVersion $ModuleVersion -ModulePreviewNumber $ModulePreviewNumber -ReleaseNotes $ManifestContent.PrivateData.PSData.ReleaseNotes
}
}
- if($Test){
- & $TestModulePS1 -ModulePath $AuthModulePath -ModuleName "$ModulePrefix.$ModuleName"
+ if ($Test) {
+ & $TestModulePS1 -ModulePath (Join-Path $AuthModulePath "artifacts" ) -ModuleName "$ModulePrefix.$ModuleName" -ModuleTestsPath (Join-Path $AuthModulePath "test")
}
if ($Pack) {
@@ -75,4 +84,4 @@ elseif ($VersionState.Equals([VersionState]::Valid) -or $VersionState.Equals([Ve
if ($Publish) {
& $PublishModulePS1 -Modules $ModuleName -ModulePrefix $ModulePrefix -ArtifactsLocation $ArtifactsLocation -RepositoryName $RepositoryName -RepositoryApiKey $RepositoryApiKey
}
-}
\ No newline at end of file
+}
diff --git a/tools/GenerateModules.ps1 b/tools/GenerateModules.ps1
index f802d563ab1..1ca641ab7cb 100644
--- a/tools/GenerateModules.ps1
+++ b/tools/GenerateModules.ps1
@@ -202,7 +202,7 @@ $ModulesToGenerate | ForEach-Object -ThrottleLimit $ModulesToGenerate.Count -Par
}
if ($Using:Test) {
- & $Using:TestModulePS1 -ModulePath $ModuleProjectDir -ModuleName $FullyQualifiedModuleName
+ & $Using:TestModulePS1 -ModulePath $ModuleProjectDir -ModuleName $FullyQualifiedModuleName -ModuleTestsPath (Join-Path $ModuleProjectDir "test")
}
if ($Using:Pack) {
diff --git a/tools/GenerateProfiles.ps1 b/tools/GenerateProfiles.ps1
index 3a930407ca9..af9456d6fc8 100644
--- a/tools/GenerateProfiles.ps1
+++ b/tools/GenerateProfiles.ps1
@@ -53,7 +53,7 @@ try {
Write-Host "Crawling '$moduleName' paths for resources and operations ..." -ForegroundColor Green
$crawlResult = [ordered]@{resources= @(); operations = [ordered]@{}}
foreach ($path in ($allPaths | Sort-Object -Property endpoint)) {
- $crawlResult.operations[$path.endpoint] = (@{apiVersion = $path.apiVersion; originalLocation = $path.originalLocation})
+ $crawlResult.operations[$path.endpoint] = ([ordered]@{apiVersion = $path.apiVersion; originalLocation = $path.originalLocation})
}
$telemetryDir = Join-Path $ModuleProfilesDirectory "crawl-log-$profileName.json"
Set-Content -Path $telemetryDir -Value ($crawlResult | ConvertTo-Json)
@@ -85,7 +85,7 @@ $profilesInYaml
# Get all profile defintions of a module and generate a single readme.
foreach ($moduleItem in (Get-ChildItem $ProfilesDirectory)) {
$definitionsRelativePaths = @{ require = @()}
- foreach ($moduleDefinition in (Get-ChildItem -Filter *.md -Path "$($moduleItem.FullName)/definitions")) {
+ foreach ($moduleDefinition in (Get-ChildItem -Filter *.md -Path "$($moduleItem.FullName)/definitions" | Sort-Object -Property name -desc)) {
$definitionsRelativePaths.require += '$(this-folder)/definitions/'+ $moduleDefinition.Name
}
$definitionsRelativePathsAsYaml = ($definitionsRelativePaths | Sort-Object -Property require | ConvertTo-Yaml)
diff --git a/tools/PackModule.ps1 b/tools/PackModule.ps1
index 820ebc6b899..b29c7c00b44 100644
--- a/tools/PackModule.ps1
+++ b/tools/PackModule.ps1
@@ -3,7 +3,7 @@
Param(
[Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()][string] $Module,
[Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()][string] $ArtifactsLocation,
- [string] $ModulePrefix="Microsoft.Graph",
+ [string] $ModulePrefix = "Microsoft.Graph",
[switch] $ExcludeMarkdownDocsFromNugetPackage
)
$NuspecHelperPS1 = Join-Path $PSScriptRoot "./NuspecHelper.ps1"
@@ -12,8 +12,8 @@ $NuspecHelperPS1 = Join-Path $PSScriptRoot "./NuspecHelper.ps1"
$LASTEXITCODE = $null
$ErrorActionPreference = "Stop"
-if($PSEdition -ne "Core") {
- Write-Error "This script requires PowerShell Core to execute. [Note] Generated cmdlets will work in both PowerShell Core or Windows PowerShell."
+if ($PSEdition -ne "Core") {
+ Write-Error "This script requires PowerShell Core to execute. [Note] Generated cmdlets will work in both PowerShell Core or Windows PowerShell."
}
$ModuleProjLocation = Join-Path $PSScriptRoot "../src/$Module/$Module"
@@ -28,17 +28,18 @@ if (Test-Path $PackModulePS1) {
}
# Pack module
& $PackModulePS1
- if($LASTEXITCODE) {
+ if ($LASTEXITCODE) {
Write-Error "Failed to pack '$Module' module."
}
# Get generated .nupkg
- $NuGetPackage = (Get-ChildItem (Join-Path $ModuleProjLocation "./bin") | Where-Object Name -Match ".nupkg").FullName
+ $NuGetPackage = (Get-ChildItem (Join-Path $ModuleProjLocation "./bin") -Recurse | Where-Object Name -Match ".nupkg").FullName
$ModuleArtifactLocation = "$ArtifactsLocation\$Module"
- if(-not (Test-Path $ModuleArtifactLocation)) {
+ if (-not (Test-Path $ModuleArtifactLocation)) {
New-Item -Path $ModuleArtifactLocation -Type Directory
- } else {
+ }
+ else {
Remove-Item -Path "$ModuleArtifactLocation\*" -Recurse -Force
}
diff --git a/tools/Templates/readme.md b/tools/Templates/readme.md
index ca4e152c469..fecb7603c29 100644
--- a/tools/Templates/readme.md
+++ b/tools/Templates/readme.md
@@ -12,6 +12,6 @@ subject-prefix: ''
### Versioning
``` yaml
-module-version: 1.4.1
+module-version: 1.4.3
release-notes: See https://aka.ms/GraphPowerShell-Release.
```
diff --git a/tools/TestModule.ps1 b/tools/TestModule.ps1
index dd01070afbc..30753cd0ce5 100644
--- a/tools/TestModule.ps1
+++ b/tools/TestModule.ps1
@@ -1,6 +1,6 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
-param([string] $ModulePath, [string] $ModuleName, [switch]$Isolated)
+param([string] $ModulePath, [string] $ModuleName, [string] $ModuleTestsPath, [switch]$Isolated)
$ErrorActionPreference = 'Stop'
# Install Pester
@@ -17,20 +17,22 @@ if(-not $Isolated) {
$modulePsd1 = Get-Item -Path (Join-Path $ModulePath "./$ModuleName.psd1")
$LocalLoadEnvPS1 = Join-Path $PSScriptRoot 'Tests/loadEnv.ps1'
+$AuthModulePSd1 = Join-Path $PSScriptRoot "../src/Authentication/Authentication/artifacts/Microsoft.Graph.Authentication.psd1"
+# Import required modules.
Import-Module -Name Pester
+Import-Module $AuthModulePSd1
Import-Module -Name $modulePsd1.FullName
# Replace AutoREST loadEnv.ps1 with our local scipt.
-Copy-Item -Path $LocalLoadEnvPS1 -Destination "$ModulePath/test"
+Copy-Item -Path $LocalLoadEnvPS1 -Destination $ModuleTestsPath
-$testFolder = Join-Path $ModulePath 'test'
$PesterConfiguration = [PesterConfiguration]::Default
-$PesterConfiguration.Run.Path = $testFolder
+$PesterConfiguration.Run.Path = $ModuleTestsPath
$PesterConfiguration.Run.Exit = $true
$PesterConfiguration.CodeCoverage.Enabled = $true
$PesterConfiguration.TestResult.Enabled = $true
-$PesterConfiguration.TestResult.OutputPath = (Join-Path $testFolder "$moduleName-TestResults.xml")
+$PesterConfiguration.TestResult.OutputPath = (Join-Path $ModuleTestsPath "$moduleName-TestResults.xml")
try {
Invoke-Pester -Configuration $PesterConfiguration